Skip to content
Snippets Groups Projects

Draft: Configure phpstan

Compare and
31 files
+ 59
45
Compare changes
  • Side-by-side
  • Inline
Files
31
@@ -117,7 +117,7 @@ protected function symlinkScaffold(ScaffoldFilePath $destination, IOInterface $i
$fs->relativeSymlink($this->source->fullPath(), $destination->fullPath());
}
catch (\Exception $e) {
throw new \RuntimeException($interpolator->interpolate("Could not symlink source file <info>[src-rel-path]</info> to <info>[dest-rel-path]</info>!"), [], $e);
throw new \RuntimeException($interpolator->interpolate("Could not symlink source file <info>[src-rel-path]</info> to <info>[dest-rel-path]</info>!"), $e->getCode(), $e);
}
$io->write($interpolator->interpolate(" - Link <info>[dest-rel-path]</info> from <info>[src-rel-path]</info>"));
return new ScaffoldResult($destination, $this->overwrite);
Loading