1 | <?php |
||
16 | class MigrateCommand extends AbstractCommand |
||
17 | { |
||
18 | /** |
||
19 | * Sets the configurations of the specified command. |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | 33 | protected function configure() |
|
27 | |||
28 | /** |
||
29 | * Executes the command. |
||
30 | * |
||
31 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
32 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
33 | * @return object|\Symfony\Component\Console\Output\OutputInterface |
||
34 | */ |
||
35 | 9 | protected function execute(InputInterface $input, OutputInterface $output) |
|
57 | |||
58 | /** |
||
59 | * Generates messages for successful migrations. |
||
60 | * |
||
61 | * @param array $migrations |
||
62 | * @param string $current |
||
63 | * @param string $latest |
||
64 | * @return boolean |
||
65 | */ |
||
66 | 9 | protected function getMessages(array $migrations, array $filenames, $current, $latest) |
|
84 | } |
||
85 |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.