ServiceInterface.php
1.28 KB
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
<?php 
namespace Phalcon\DI {
	/**
	 * Phalcon\DI\ServiceInterface initializer
	 */
	
	interface ServiceInterface {
		/**
		 * \Phalcon\DI\ServiceInterface
		 *
		 * @param string $name
		 * @param mixed $definition
		 * @param boolean $shared
		 */
		public function __construct($name, $definition, $shared=null);
		/**
		 * Returns the service's name
		 *
		 * @param string
		 */
		public function getName();
		/**
		 * Sets if the service is shared or not
		 *
		 * @param boolean $shared
		 */
		public function setShared($shared);
		/**
		 * Check whether the service is shared or not
		 *
		 * @return boolean
		 */
		public function isShared();
		/**
		 * Set the service definition
		 *
		 * @param mixed $definition
		 */
		public function setDefinition($definition);
		/**
		 * Returns the service definition
		 *
		 * @return mixed
		 */
		public function getDefinition();
		/**
		 * Resolves the service
		 *
		 * @param array $parameters
		 * @param \Phalcon\DiInterface $dependencyInjector
		 * @return mixed
		 */
		public function resolve($parameters=null, $dependencyInjector=null);
		/**
		 * Restore the interal state of a service
		 *
		 * @param array $attributes
		 * @return \Phalcon\DI\ServiceInterface
		 */
		public static function __set_state($attributes);
	}
}