Completed
Push — work-fleets ( 4edb07...0059e8 )
by SuperNova.WS
06:33
created

ContainerArrayOfObject   A

Complexity

Total Complexity 12

Size/Duplication

Total Lines 50
Duplicated Lines 28 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 14
loc 50
rs 10
wmc 12
lcom 1
cbo 1

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __call() 7 7 4
A getSumProperty() 0 10 4
A aggregateByMethod() 7 7 4

How to fix   Duplicated Code   

Duplicated Code

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:

1
<?php
2
3
/**
4
 * Class ContainerArrayOfObject
5
 *
6
 * Access to object container as to array by index
7
 * Features:
8
 * - applying predefined functions to container content via __call();
9
 * - get sum of specified property of containing objects;
10
 * - aggregate value of property of containing objects;
11
 *
12
 */
13
class ContainerArrayOfObject extends ArrayAccessV2 {
14
15
  /**
16
   * Automatically apply all non-exist function from static::$_call list to $_container content
17
   *
18
   * @param string $method_name
19
   * @param array  $arguments
20
   */
21 View Code Duplication
  public function __call($method_name, array $arguments) {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
22
    foreach($this->_container as $object) {
23
      if(is_object($object) && method_exists($object, $method_name)) {
24
        call_user_func_array(array($object, $method_name), $arguments);
25
      }
26
    }
27
  }
28
29
  /**
30
   * Summarize property values of contained objects
31
   *
32
   * @param string $property_name
33
   *
34
   * @return float
35
   */
36
  public function getSumProperty($property_name) {
37
    $result = 0.0;
38
    foreach($this->_container as $object) {
39
      if(is_object($object) && property_exists($object, $property_name)) {
40
        $result += $object->$property_name;
41
      }
42
    }
43
44
    return $result;
45
  }
46
47
  /**
48
   * Aggregate value of $property_name in containing object by $method_name
49
   *
50
   * @param string $method_name
51
   *
52
   * @return mixed
53
   */
54 View Code Duplication
  public function aggregateByMethod($method_name, &$result) {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
55
    foreach($this->_container as $object) {
56
      if(is_object($object) && method_exists($object, $method_name)) {
57
        call_user_func(array($object, $method_name), $result);
58
      }
59
    }
60
  }
61
62
}
63