mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-20 02:08:51 +00:00
[ticket/13733] Braces on their own lines
PHPBB3-13733
This commit is contained in:
parent
65316cffaf
commit
c485540f53
1 changed files with 4 additions and 2 deletions
|
@ -149,9 +149,11 @@ class base implements \phpbb\extension\extension_interface
|
|||
|
||||
// Otherwise, i.e. if it doesn't exist or it is
|
||||
// not an extend the abstract class, we unset it
|
||||
if (class_exists($migration)) {
|
||||
if (class_exists($migration))
|
||||
{
|
||||
$reflector = new \ReflectionClass($migration);
|
||||
if ($reflector->isSubclassOf('\phpbb\db\migration\migration')) {
|
||||
if ($reflector->isSubclassOf('\phpbb\db\migration\migration'))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue