| Total Complexity | 4 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | abstract class Objct |
||
| 33 | { |
||
| 34 | |||
| 35 | /** |
||
| 36 | * This method returns the class as |
||
| 37 | * a string representation. |
||
| 38 | * |
||
| 39 | * @return string The objects string representation |
||
| 40 | */ |
||
| 41 | 1 | public function __toString() |
|
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * This method returns the class name as |
||
| 48 | * a string. |
||
| 49 | * |
||
| 50 | * @return string |
||
| 51 | */ |
||
| 52 | 1 | public static function __getClass() |
|
| 53 | { |
||
| 54 | 1 | return __CLASS__; |
|
| 55 | } |
||
| 56 | |||
| 57 | /** |
||
| 58 | * This method checks if the passed object is equal |
||
| 59 | * to itself. |
||
| 60 | * |
||
| 61 | * @param \AppserverIo\Lang\Objct $obj The object to check |
||
| 62 | * |
||
| 63 | * @return boolean Returns TRUE if the passed object is equal |
||
| 64 | */ |
||
| 65 | 2 | public function equals(Objct $obj) |
|
| 71 | } |
||
| 72 | } |
||
| 73 |