@@ -24,11 +24,11 @@ discard block |
||
| 24 | 24 | ]; |
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | - * Single enable step that installs any included migrations |
|
| 28 | - * |
|
| 29 | - * @param mixed $old_state State returned by previous call of this method |
|
| 30 | - * @return mixed Returns false after last step, otherwise temporary state |
|
| 31 | - */ |
|
| 27 | + * Single enable step that installs any included migrations |
|
| 28 | + * |
|
| 29 | + * @param mixed $old_state State returned by previous call of this method |
|
| 30 | + * @return mixed Returns false after last step, otherwise temporary state |
|
| 31 | + */ |
|
| 32 | 32 | function enable_step($old_state) |
| 33 | 33 | { |
| 34 | 34 | switch ($old_state) |
@@ -62,11 +62,11 @@ discard block |
||
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | /** |
| 65 | - * Single disable step that does nothing |
|
| 66 | - * |
|
| 67 | - * @param mixed $old_state State returned by previous call of this method |
|
| 68 | - * @return mixed Returns false after last step, otherwise temporary state |
|
| 69 | - */ |
|
| 65 | + * Single disable step that does nothing |
|
| 66 | + * |
|
| 67 | + * @param mixed $old_state State returned by previous call of this method |
|
| 68 | + * @return mixed Returns false after last step, otherwise temporary state |
|
| 69 | + */ |
|
| 70 | 70 | function disable_step($old_state) |
| 71 | 71 | { |
| 72 | 72 | switch ($old_state) |
@@ -97,11 +97,11 @@ discard block |
||
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
| 100 | - * Single purge step that reverts any included and installed migrations |
|
| 101 | - * |
|
| 102 | - * @param mixed $old_state State returned by previous call of this method |
|
| 103 | - * @return mixed Returns false after last step, otherwise temporary state |
|
| 104 | - */ |
|
| 100 | + * Single purge step that reverts any included and installed migrations |
|
| 101 | + * |
|
| 102 | + * @param mixed $old_state State returned by previous call of this method |
|
| 103 | + * @return mixed Returns false after last step, otherwise temporary state |
|
| 104 | + */ |
|
| 105 | 105 | function purge_step($old_state) |
| 106 | 106 | { |
| 107 | 107 | $extensions = $this->container->get('ext.manager'); |
@@ -124,10 +124,10 @@ discard block |
||
| 124 | 124 | { |
| 125 | 125 | case '': // Empty means nothing has run yet |
| 126 | 126 | /** |
| 127 | - * @todo Remove this try/catch condition once purge_notifications is fixed |
|
| 128 | - * in the core to work with disabled extensions without fatal errors. |
|
| 129 | - * https://tracker.phpbb.com/browse/PHPBB3-12435 |
|
| 130 | - */ |
|
| 127 | + * @todo Remove this try/catch condition once purge_notifications is fixed |
|
| 128 | + * in the core to work with disabled extensions without fatal errors. |
|
| 129 | + * https://tracker.phpbb.com/browse/PHPBB3-12435 |
|
| 130 | + */ |
|
| 131 | 131 | try |
| 132 | 132 | { |
| 133 | 133 | // Purge board rules notifications |