Skip to content

Commit

Permalink
Removing the static keyword that slipt there by mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeSimonson committed Jun 30, 2015
1 parent 8510c46 commit 487224e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function createSchema()
* @param mixed $manager Hopefully an entity manager, but it may be anything
* @return boolean
*/
private static function isEntityManager($manager)
private function isEntityManager($manager)
{
return $manager instanceof EntityManagerInterface || $manager instanceof EntityManager;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function testEntityManagerWithoutMetadataCausesError()
$this->ormProvider->createSchema();
}

public static function notEntityManagers()
public function notEntityManagers()
{
return array(
array(new \stdclass),
Expand Down

0 comments on commit 487224e

Please sign in to comment.