1 | <?php |
||
19 | class FluentDriver implements MappingDriver |
||
20 | { |
||
21 | /** |
||
22 | * @var MapperSet |
||
23 | */ |
||
24 | protected $mappers; |
||
25 | |||
26 | /** |
||
27 | * @var callable |
||
28 | */ |
||
29 | protected $fluentFactory; |
||
30 | |||
31 | /** |
||
32 | * The file extension of mapping documents. |
||
33 | * |
||
34 | * @var string |
||
35 | */ |
||
36 | protected $fileExtension = '.php'; |
||
37 | |||
38 | /** |
||
39 | * Initializes a new FileDriver that looks in the given path(s) for mapping |
||
40 | * documents and operates in the specified operating mode. |
||
41 | * |
||
42 | * @param string[] $mappings |
||
43 | * @param array $paths |
||
44 | * |
||
45 | * @throws MappingException |
||
46 | */ |
||
47 | public function __construct(array $mappings = [], array $paths = []) |
||
67 | |||
68 | /** |
||
69 | * Loads the metadata for the specified class into the provided container. |
||
70 | * |
||
71 | * @param string $className |
||
72 | * @param ClassMetadata $metadata |
||
73 | */ |
||
74 | 4 | public function loadMetadataForClass($className, ClassMetadata $metadata) |
|
80 | |||
81 | /** |
||
82 | * Gets the names of all mapped classes known to this driver. |
||
83 | * |
||
84 | * @throws MappingException |
||
85 | * @return string[] The names of all mapped classes known to this driver. |
||
86 | */ |
||
87 | 40 | public function getAllClassNames() |
|
91 | |||
92 | /** |
||
93 | * Returns whether the class with the specified name should have its metadata loaded. |
||
94 | * This is only the case if it is either mapped as an Entity or a MappedSuperclass. |
||
95 | * |
||
96 | * @param string $className |
||
97 | * |
||
98 | * @return bool |
||
99 | */ |
||
100 | public function isTransient($className) |
||
106 | |||
107 | /** |
||
108 | * @param array $paths |
||
109 | * |
||
110 | * @throws MappingException |
||
111 | */ |
||
112 | public function loadPaths(array $paths) |
||
171 | |||
172 | /** |
||
173 | * @param string[] $mappings |
||
174 | * |
||
175 | * @throws InvalidArgumentException |
||
176 | */ |
||
177 | 316 | public function addMappings(array $mappings = []) |
|
193 | |||
194 | /** |
||
195 | * @param Mapping $mapping |
||
196 | * |
||
197 | * @throws MappingException |
||
198 | * @return void |
||
199 | */ |
||
200 | 316 | public function addMapping(Mapping $mapping) |
|
204 | |||
205 | /** |
||
206 | * @return MapperSet |
||
207 | */ |
||
208 | 4 | public function getMappers() |
|
212 | |||
213 | /** |
||
214 | * Override the default Fluent factory method with a custom one. |
||
215 | * Use this to implement your own Fluent builder. |
||
216 | * The method will receive a ClassMetadata object as its only argument. |
||
217 | * |
||
218 | * @param callable $factory |
||
219 | */ |
||
220 | public function setFluentFactory(callable $factory) |
||
224 | |||
225 | /** |
||
226 | * @param ClassMetadata $metadata |
||
227 | * |
||
228 | * @return Fluent |
||
229 | */ |
||
230 | 4 | protected function getFluent(ClassMetadata $metadata) |
|
234 | } |
||
235 |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVar
assignment in line 1 and the$higher
assignment in line 2 are dead. The first because$myVar
is never used and the second because$higher
is always overwritten for every possible time line.