This repository has been archived by the owner on May 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAbstractBaseCachingContainer.php
96 lines (83 loc) · 2.06 KB
/
AbstractBaseCachingContainer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
namespace Dhii\Di;
use Dhii\Invocation\CreateReflectionForCallableCapableTrait;
use Dhii\Iterator\CountIterableCapableTrait;
use Dhii\Iterator\ResolveIteratorCapableTrait;
use Dhii\Util\Normalization\NormalizeIterableCapableTrait;
use ReflectionFunction;
use ReflectionMethod;
/**
* Common functionality for containers that cache resolved services.
*
* @since [*next-version*]
*/
abstract class AbstractBaseCachingContainer extends AbstractBaseContainer
{
/* Ability to retrieve resolved cached service.
*
* @since [*next-version*]
*/
use GetServiceCapableCachingTrait;
/* Awareness of a service cache.
*
* @since [*next-version*]
*/
use ServiceCacheAwareTrait;
/* Ability to resolve a service definition.
*
* @since [*next-version*]
*/
use ResolveDefinitionCapableTrait;
/* Ability to invoke callables;
*
* @since [*next-version*]
*/
use InvokingTrait;
/* Ability to count iterables.
*
* @since [*next-version*]
*/
use CountIterableCapableTrait;
/* Ability to resolve an iterator from a Traversable chain.
*
* @since [*next-version*]
*/
use ResolveIteratorCapableTrait;
/* Ability to normalize into a validator.
*
* @since [*next-version*]
*/
use NormalizeIterableCapableTrait;
/* Ability to create a reflection for a callable.
*
* @since [*next-version*]
*/
use CreateReflectionForCallableCapableTrait;
/**
* {@inheritdoc}
*
* @since [*next-version*]
*/
protected function _getArgsForDefinition($definition)
{
return [$this];
}
/**
* {@inheritdoc}
*
* @since [*next-version*]
*/
protected function _createReflectionFunction($functionName)
{
return new ReflectionFunction($functionName);
}
/**
* {@inheritdoc}
*
* @since [*next-version*]
*/
protected function _createReflectionMethod($className, $methodName)
{
return new ReflectionMethod($className, $methodName);
}
}