@@ -33,7 +33,6 @@ |
||
| 33 | 33 | /** |
| 34 | 34 | * Collection constructor |
| 35 | 35 | * |
| 36 | - * @param array $data |
|
| 37 | 36 | */ |
| 38 | 37 | public function __construct(array $elements = array()) |
| 39 | 38 | { |
@@ -104,7 +104,7 @@ |
||
| 104 | 104 | /** |
| 105 | 105 | * Returns new instance with updated jobtitle |
| 106 | 106 | * |
| 107 | - * @param string $jobtitle |
|
| 107 | + * @param string $jobitle |
|
| 108 | 108 | * |
| 109 | 109 | * @return IptcInterface |
| 110 | 110 | */ |
@@ -99,7 +99,7 @@ |
||
| 99 | 99 | $data = array(); |
| 100 | 100 | $keys = array_keys(self::$iptcMapping); |
| 101 | 101 | foreach ($keys as $prop) { |
| 102 | - $accessor = 'get' . ucfirst($prop); |
|
| 102 | + $accessor = 'get'.ucfirst($prop); |
|
| 103 | 103 | $value = $this->$accessor(); |
| 104 | 104 | |
| 105 | 105 | if (empty($value) && !$withEmpty) { |