@@ -2,8 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace BestServedCold\PhalueObjects; |
4 | 4 | |
5 | -use phpDocumentor\Compiler\Pass\PackageTreeBuilder; |
|
6 | - |
|
7 | 5 | /** |
8 | 6 | * Class ValueObject |
9 | 7 | * |
@@ -46,7 +46,7 @@ |
||
46 | 46 | public static function human($name = false) |
47 | 47 | { |
48 | 48 | return implode(array_map(function ($key, $value) { |
49 | - return '[' . $key . ']: [' . (string) $value . "]\n"; |
|
49 | + return '[' . $key . ']: [' . (string) $value . "]\n"; |
|
50 | 50 | }, array_keys(self::get($name)), self::get($name))); |
51 | 51 | } |
52 | 52 |