1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/13733] Braces on their own lines

PHPBB3-13733
This commit is contained in:
David King
2015-05-23 21:38:59 -04:00
parent 65316cffaf
commit c485540f53

View File

@@ -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;
}