This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | /** |
||
4 | * @file |
||
5 | * Contains \Drupal\service_container\DependencyInjection\CachedContainerBuilder |
||
6 | */ |
||
7 | |||
8 | namespace Drupal\service_container\DependencyInjection; |
||
9 | |||
10 | use Drupal\Component\Plugin\PluginManagerInterface; |
||
11 | use DrupalCacheInterface; |
||
12 | |||
13 | /** |
||
14 | * CachedContainerBuilder retrieves the container definition from cache |
||
15 | * or builds it. |
||
16 | * |
||
17 | * The reason is to skip invoking all the ctools_* functions via the discovery |
||
18 | * interface, which needs all modules loaded. |
||
19 | * |
||
20 | * This is especially useful to use the ServiceContainer safely within |
||
21 | * hook_boot() or even earlier. |
||
22 | * |
||
23 | * @ingroup dic |
||
24 | */ |
||
25 | class CachedContainerBuilder extends ContainerBuilder { |
||
26 | |||
27 | /** |
||
28 | * The Drupal core cache bin. |
||
29 | * |
||
30 | * @var \DrupalCacheInterface |
||
31 | */ |
||
32 | protected $cache; |
||
33 | |||
34 | /** |
||
35 | * The cached definition. |
||
36 | * |
||
37 | * @var array |
||
38 | */ |
||
39 | protected $cachedDefinition; |
||
40 | |||
41 | /** |
||
42 | * Constructs a ContainerBuilder object. |
||
43 | * |
||
44 | * @param PluginManagerInterface $service_provider_manager |
||
45 | * The service provider manager that provides the service providers, |
||
46 | * which define the services used in the container. |
||
47 | * @param \DrupalCacheInterface $cache |
||
48 | * The cache bin used to store retrieve the container to/from. |
||
49 | * To get a cache object use e.g.: $cache = _cache_get_object('cache'); |
||
50 | */ |
||
51 | public function __construct(PluginManagerInterface $service_provider_manager, DrupalCacheInterface $cache) { |
||
52 | $this->cache = $cache; |
||
53 | parent::__construct($service_provider_manager); |
||
54 | } |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function getContainerDefinition() { |
||
60 | $definition = $this->getCache(); |
||
0 ignored issues
–
show
Bug
Compatibility
introduced
by
![]() |
|||
61 | if (!$definition) { |
||
62 | $definition = parent::getContainerDefinition(); |
||
63 | $this->setCache($definition); |
||
64 | } |
||
65 | |||
66 | return $definition; |
||
67 | } |
||
68 | |||
69 | /** |
||
70 | * Determines if the container is cached. |
||
71 | * |
||
72 | * @return bool |
||
73 | * Returns TRUE if the container definition is cached, FALSE otherwise. |
||
74 | */ |
||
75 | public function isCached() { |
||
76 | $definition = $this->getCache(); |
||
77 | |||
78 | return (bool) $definition; |
||
79 | } |
||
80 | |||
81 | /** |
||
82 | * Returns the cache id of the container definition. |
||
83 | * |
||
84 | * @return string |
||
85 | * The hardcoded cache id or via variable_get() if defined. |
||
86 | * |
||
87 | * @codeCoverageIgnore |
||
88 | */ |
||
89 | protected function getCacheId() { |
||
90 | return variable_get('service_container_container_cid', 'service_container:container_definition'); |
||
91 | } |
||
92 | |||
93 | /** |
||
94 | * Retrieves the cache id of the container definition. |
||
95 | * |
||
96 | * @return string |
||
97 | * The hardcoded cache id or via variable_get() if defined. |
||
98 | */ |
||
99 | protected function getCache() { |
||
100 | if (isset($this->cachedDefinition)) { |
||
101 | return $this->cachedDefinition; |
||
0 ignored issues
–
show
The return type of
return $this->cachedDefinition; (array ) is incompatible with the return type documented by Drupal\service_container...tainerBuilder::getCache of type string .
If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design. Let’s take a look at an example: class Author {
private $name;
public function __construct($name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
}
abstract class Post {
public function getAuthor() {
return 'Johannes';
}
}
class BlogPost extends Post {
public function getAuthor() {
return new Author('Johannes');
}
}
class ForumPost extends Post { /* ... */ }
function my_function(Post $post) {
echo strtoupper($post->getAuthor());
}
Our function ![]() |
|||
102 | } |
||
103 | |||
104 | $cache = $this->cache->get($this->getCacheId()); |
||
105 | |||
106 | $this->cachedDefinition = FALSE; |
||
0 ignored issues
–
show
It seems like
FALSE of type false is incompatible with the declared type array of property $cachedDefinition .
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property. Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property.. ![]() |
|||
107 | if (!empty($cache->data)) { |
||
108 | $this->cachedDefinition = $cache->data; |
||
109 | } |
||
110 | |||
111 | return $this->cachedDefinition; |
||
112 | } |
||
113 | |||
114 | /** |
||
115 | * Caches the builded container definition. |
||
116 | * |
||
117 | * @param array |
||
118 | * The container definition array. |
||
119 | */ |
||
120 | protected function setCache(array $definition) { |
||
121 | $this->cache->set($this->getCacheId(), $definition); |
||
122 | $this->cachedDefinition = $definition; |
||
123 | } |
||
124 | |||
125 | /** |
||
126 | * Reset the internal cache. |
||
127 | * |
||
128 | * Note: This is just thought for tests. |
||
129 | */ |
||
130 | public function reset() { |
||
131 | $this->cachedDefinition = NULL; |
||
0 ignored issues
–
show
It seems like
NULL of type null is incompatible with the declared type array of property $cachedDefinition .
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property. Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property.. ![]() |
|||
132 | $this->cache->clear($this->getCacheId()); |
||
133 | } |
||
134 | |||
135 | } |
||
136 |