Skip to content
This repository has been archived by the owner on Feb 6, 2020. It is now read-only.

Commit

Permalink
Remove last line in class
Browse files Browse the repository at this point in the history
between the last method and the curly brace of the class end

e.g.
from:
    public function foo()
    {
        // method body
    }

}

to:
    public function foo()
    {
        // method body
    }
}
  • Loading branch information
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/AbstractPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,5 +218,4 @@ protected function createFromFactory($canonicalName, $requestedName)

return $instance;
}

}
1 change: 0 additions & 1 deletion src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,5 +151,4 @@ public function configureServiceManager(ServiceManager $serviceManager)
$serviceManager->setShared($name, $isShared);
}
}

}
1 change: 0 additions & 1 deletion src/Di/DiServiceFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,4 @@ public function get($name, array $params = array())
}

}

}
1 change: 0 additions & 1 deletion src/Di/DiServiceInitializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,4 @@ public function initialize($instance, ServiceLocatorInterface $serviceLocator)
throw $e;
}
}

}

0 comments on commit 9035c5b

Please sign in to comment.