Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like ActiveQuery often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use ActiveQuery, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
18 | class ActiveQuery extends Query implements ActiveQueryInterface |
||
19 | { |
||
20 | use ActiveQueryTrait; |
||
21 | use ActiveRelationTrait; |
||
22 | |||
23 | /** |
||
24 | * @event Event an event that is triggered when the query is initialized via [[init()]]. |
||
25 | */ |
||
26 | const EVENT_INIT = 'init'; |
||
27 | |||
28 | /** |
||
29 | * @var array|null a list of relations that this query should be joined with |
||
30 | */ |
||
31 | public $joinWith = []; |
||
32 | |||
33 | /** |
||
34 | * Constructor. |
||
35 | * @param string $modelClass the model class associated with this query |
||
36 | * @param array $config configurations to be applied to the newly created query object |
||
37 | */ |
||
38 | 2 | public function __construct($modelClass, $config = []) |
|
44 | |||
45 | /** |
||
46 | * Initializes the object. |
||
47 | * This method is called at the end of the constructor. The default implementation will trigger |
||
48 | * an [[EVENT_INIT]] event. If you override this method, make sure you call the parent implementation at the end |
||
49 | * to ensure triggering of the event. |
||
50 | */ |
||
51 | 2 | public function init() |
|
56 | |||
57 | /** |
||
58 | * Creates a DB command that can be used to execute this query. |
||
59 | * @param Connection $db the DB connection used to create the DB command. |
||
60 | * If null, the DB connection returned by [[modelClass]] will be used. |
||
61 | * @return Command the created DB command instance |
||
62 | */ |
||
63 | 2 | public function createCommand($db = null) |
|
99 | |||
100 | /** |
||
101 | * Prepares query for use. See NOTE. |
||
102 | * @param QueryBuilder $builder |
||
103 | * @return static |
||
104 | */ |
||
105 | 2 | public function prepare($builder = null) |
|
121 | |||
122 | /** |
||
123 | * @param $with |
||
124 | * @return static |
||
125 | */ |
||
126 | public function joinWith($with) |
||
132 | |||
133 | private function buildJoinWith() |
||
170 | |||
171 | /** |
||
172 | * @param ActiveRecord $model |
||
173 | * @param $with |
||
174 | */ |
||
175 | protected function joinWithRelations($model, $with) |
||
198 | |||
199 | /** |
||
200 | * Joins a parent query with a child query. |
||
201 | * The current query object will be modified accordingly. |
||
202 | * @param ActiveQuery $parent |
||
203 | * @param ActiveQuery $child |
||
204 | */ |
||
205 | private function joinWithRelation($parent, $child) |
||
213 | |||
214 | public function select($columns, $option = null) |
||
220 | |||
221 | /** |
||
222 | * @param array|string $columns |
||
223 | * @return $this |
||
224 | */ |
||
225 | public function addSelect($columns) |
||
239 | |||
240 | /** |
||
241 | * Executes query and returns a single row of result. |
||
242 | * |
||
243 | * @param Connection $db the DB connection used to create the DB command. |
||
244 | * If null, the DB connection returned by [[modelClass]] will be used. |
||
245 | * @return ActiveRecord|array|null a single row of query result. Depending on the setting of [[asArray]], |
||
246 | * the query result may be either an array or an ActiveRecord object. Null will be returned |
||
247 | * if the query results in nothing. |
||
248 | */ |
||
249 | public function one($db = null) |
||
255 | |||
256 | /** |
||
257 | * Executes query and returns all results as an array. |
||
258 | * @param Connection $db the DB connection used to create the DB command. |
||
259 | * If null, the DB connection returned by [[modelClass]] will be used. |
||
260 | * @return array|ActiveRecord[] the query results. If the query results in nothing, an empty array will be returned. |
||
261 | */ |
||
262 | 2 | public function all($db = null) |
|
272 | |||
273 | 2 | public function populate($rows) |
|
291 | |||
292 | 2 | private function createModels($rows) |
|
315 | |||
316 | /** |
||
317 | * Populates joined relations from [[join]] array. |
||
318 | * |
||
319 | * @param ActiveRecord $model |
||
320 | * @param array $row |
||
321 | */ |
||
322 | 2 | public function populateJoinedRelations($model, array $row) |
|
379 | |||
380 | /** |
||
381 | * @param $relatedModel |
||
382 | */ |
||
383 | private function addInverseRelation($relatedModel) |
||
392 | } |
||
393 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..