PluginProbe
Assistant – Every Day Productivity Apps / 1.5.1
Assistant – Every Day Productivity Apps v1.5.1
1.5.5 trunk 0.1.0 0.2.0 0.2.1 0.2.2 0.3.0 0.3.1 0.4 0.4.1 0.4.2 0.5.0 0.5.1 0.6.0 0.7.0 0.7.0.2 0.7.0.3 0.7.0.4 0.7.0.5 0.7.0.6 0.7.0.7 0.7.0.8 0.7.0.9 0.7.1 1.0 All 71 releases
← All changes | backend/src/System/Container/CachingReflector.php +1 -1 trunk1.5.1 View file →
@@ -12,9 +12,9 @@
12 12
13 13 private $reflector;
14 14 private $cache;
15 15
16 - public function __construct( ?Reflector $reflector = null, ?ReflectionCache $cache = null ) {
16 + public function __construct( Reflector $reflector = null, ReflectionCache $cache = null ) {
17 17 $this->reflector = $reflector ?: new StandardReflector;
18 18 $this->cache = $cache ?: new ReflectionCacheArray;
19 19 }
20 20