It seems like the GitHub access token used for retrieving details about this repository from
GitHub became invalid. This might prevent certain types of inspections from being run (in
particular,
everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
It seems like you do not handle an error condition here. This can introduce security issues, and is generally not recommended.
If you suppress an error, we recommend checking for the error condition explicitly:
// For example instead of@mkdir($dir);// Better useif(@mkdir($dir)===false){thrownew\RuntimeException('The directory '.$dir.' could not be created.');}
Loading history...
35
'Doctrine loaders support is deprecated since 1.4.0 and will be removed in 2.0.',
36
E_USER_DEPRECATED
37
108
);
38
}
39
108
40
108
41
/**
42
* {@inheritdoc}
43
*
44
* Use Symfony\Component\DependencyInjection\ContainerAwareTrait instead when dropping SF 2.3 and PHP 5.3 support.
45
*/
46
public function setContainer(ContainerInterface $container = null)
47
{
48
$this->container = $container;
49
6
}
50
51
6
/**
52
* Loads the fixtures files.
53
*
54
* @param ObjectManager $objectManager
55
*
56
* @return \object[] Persisted objects
57
*/
58
public function load(ObjectManager $objectManager)
If you suppress an error, we recommend checking for the error condition explicitly: