@@ -17,7 +17,7 @@ |
||
| 17 | 17 | $dsn = sprintf( |
| 18 | 18 | '%s:host=%s;port=%d;dbname=%s;user=%s;password=%s', |
| 19 | 19 | $config[DatabaseConfig::PROPEL_CONF_ADAPTER], |
| 20 | - $config[DatabaseConfig::PROPEL_CONF_HOST] , |
|
| 20 | + $config[DatabaseConfig::PROPEL_CONF_HOST], |
|
| 21 | 21 | $config[DatabaseConfig::PROPEL_CONF_PORT], |
| 22 | 22 | $config[DatabaseConfig::PROPEL_CONF_DBNAME], |
| 23 | 23 | $config[DatabaseConfig::PROPEL_CONF_USER], |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | protected function configure(): void |
| 22 | 22 | { |
| 23 | 23 | $this->setName('propel:config:generate') |
| 24 | - ->setDescription('Generate propel config files from project config'); |
|
| 24 | + ->setDescription('Generate propel config files from project config'); |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | /** |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | protected function configure(): void |
| 23 | 23 | { |
| 24 | 24 | $this->setName('propel:model:build') |
| 25 | - ->setDescription('Generate propel models'); |
|
| 25 | + ->setDescription('Generate propel models'); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | /** |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | protected function configure(): void |
| 21 | 21 | { |
| 22 | 22 | $this->setName('propel:migrate') |
| 23 | - ->setDescription('Migrate propel'); |
|
| 23 | + ->setDescription('Migrate propel'); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | /** |
@@ -65,9 +65,9 @@ |
||
| 65 | 65 | $targetFilename = str_replace( |
| 66 | 66 | $this->schemaPattern, |
| 67 | 67 | '.schema.xml', |
| 68 | - basename((string)$schemaFile->getRealPath()) |
|
| 68 | + basename((string) $schemaFile->getRealPath()) |
|
| 69 | 69 | ); |
| 70 | - copy((string)$schemaFile->getRealPath(), $this->schemaTarget . '/' . $targetFilename); |
|
| 70 | + copy((string) $schemaFile->getRealPath(), $this->schemaTarget . '/' . $targetFilename); |
|
| 71 | 71 | } |
| 72 | 72 | } |
| 73 | 73 | |