1 | <?php |
||
19 | class Container extends PhpArrayContainer implements ContainerInterface { |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function createInstance($plugin_id, $service_definition) { |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function getDefinition($plugin_id, $exception_on_invalid = TRUE) { |
||
47 | |||
48 | /** |
||
49 | * {@inheritdoc} |
||
50 | */ |
||
51 | public function getDefinitions() { |
||
54 | |||
55 | /** |
||
56 | * {@inheritdoc} |
||
57 | */ |
||
58 | public function hasDefinition($plugin_id) { |
||
61 | |||
62 | /** |
||
63 | * Camelizes a string. |
||
64 | * |
||
65 | * @param $name |
||
66 | * The string to camelize. |
||
67 | * |
||
68 | * @return string |
||
69 | * The camelized string. |
||
70 | * |
||
71 | */ |
||
72 | public static function camelize($name) { |
||
75 | |||
76 | /** |
||
77 | * Un-camelizes a string. |
||
78 | * |
||
79 | * @param $name |
||
80 | * The string to underscore. |
||
81 | * |
||
82 | * @return string |
||
83 | * The underscored string. |
||
84 | * |
||
85 | */ |
||
86 | public static function underscore($name) { |
||
89 | } |
||
90 |