File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ public static function run(array $argv): void
322
322
323
323
$ show_info = self ::initShowInfo ($ options );
324
324
325
- $ is_diff = self ::initIsDiff ($ options );
325
+ $ is_diff = false ; // self::initIsDiff($options);
326
326
327
327
$ find_unused_code = self ::shouldFindUnusedCode ($ options , $ config );
328
328
@@ -489,12 +489,12 @@ private static function initShowInfo(array $options): bool
489
489
: false ;
490
490
}
491
491
492
- private static function initIsDiff (array $ options ): bool
492
+ /* private static function initIsDiff(array $options): bool
493
493
{
494
494
return !isset($options['no-diff'])
495
495
&& !isset($options['set-baseline'])
496
496
&& !isset($options['update-baseline']);
497
- }
497
+ }*/
498
498
499
499
/**
500
500
* @param array<int,string> $args
Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ public function testPsalmWithPHPVersionFromConfig(): void
164
164
);
165
165
}
166
166
167
+ /*
167
168
public function testPsalmDiff(): void
168
169
{
169
170
copy(__DIR__ . '/../fixtures/DummyProjectWithErrors/diff_composer.lock', self::$tmpDir . '/composer.lock');
@@ -187,7 +188,7 @@ public function testPsalmDiff(): void
187
188
$this->assertSame(2, $result['CODE']);
188
189
189
190
@unlink(self::$tmpDir . '/composer.lock');
190
- }
191
+ }*/
191
192
192
193
public function testTainting (): void
193
194
{
You can’t perform that action at this time.
0 commit comments