[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 // Otherwise, i.e. if it doesn't exist or it is
// not an extend the abstract class, we unset it // not an extend the abstract class, we unset it
if (class_exists($migration)) { if (class_exists($migration))
{
$reflector = new \ReflectionClass($migration); $reflector = new \ReflectionClass($migration);
if ($reflector->isSubclassOf('\phpbb\db\migration\migration')) { if ($reflector->isSubclassOf('\phpbb\db\migration\migration'))
{
continue; continue;
} }