Skip to content

Commit 9196e99

Browse files
committed
ignore is string call in make:entity
1 parent 1b6fba3 commit 9196e99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Maker/MakeEntity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ public function generate(InputInterface $input, ConsoleStyle $io, Generator $gen
306306
}
307307

308308
foreach ($fileManagerOperations as $path => $manipulatorOrMessage) {
309-
if (\is_string($manipulatorOrMessage)) {
309+
if (\is_string($manipulatorOrMessage)) { /* @phpstan-ignore-line - this appears to always be an instance of CSM */
310310
$io->comment($manipulatorOrMessage);
311311
} else {
312312
$this->fileManager->dumpFile($path, $manipulatorOrMessage->getSourceCode());

0 commit comments

Comments
 (0)