Fabien Potencier vor 14 Jahren
Ursprung
Commit
570a100860

+ 1 - 1
src/Symfony/Bundle/DoctrineBundle/Command/DoctrineCommand.php

@@ -169,7 +169,7 @@ abstract class DoctrineCommand extends Command
         $destination = str_replace('/'.$path, '', $search, $c);
 
         if ($c != 1) {
-            throw new \RuntimeException('Can\'t find base path for bundle (path: "$path", destination: "$destination").');
+            throw new \RuntimeException(sprintf('Can\'t find base path for bundle (path: "%s", destination: "%s").', $path, $destination));
         }
 
         return $destination;

+ 1 - 1
src/Symfony/Bundle/DoctrineMongoDBBundle/Command/DoctrineODMCommand.php

@@ -113,7 +113,7 @@ abstract class DoctrineODMCommand extends Command
         $destination = str_replace('/'.$path, '', $search, $c);
 
         if ($c != 1) {
-            throw new \RuntimeException('Can\'t find base path for bundle (path: "$path", destination: "$destination").');
+            throw new \RuntimeException(sprintf('Can\'t find base path for bundle (path: "%s", destination: "%s").', $path, $destination));
         }
 
         return $destination;