@@ -37,7 +37,7 @@ |
||
| 37 | 37 | $connection->setAttribute(PDO::ATTR_PERSISTENT, true); |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | - foreach ($this->attributes as $key => $value){ |
|
| 40 | + foreach ($this->attributes as $key => $value) { |
|
| 41 | 41 | $connection->setAttribute($key, $value); |
| 42 | 42 | } |
| 43 | 43 | |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | $connection->setAttribute(PDO::ATTR_PERSISTENT, true); |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | - foreach ($this->attributes as $key => $value){ |
|
| 40 | + foreach ($this->attributes as $key => $value) { |
|
| 41 | 41 | $connection->setAttribute($key, $value); |
| 42 | 42 | } |
| 43 | 43 | |
@@ -75,7 +75,7 @@ |
||
| 75 | 75 | foreach ($this->getPrimaryKeys() as $key) { |
| 76 | 76 | $toComplete[] = $record->offsetGet($key); |
| 77 | 77 | } |
| 78 | - return (count(array_filter($toComplete))) ? implode('_', $toComplete) : null ; |
|
| 78 | + return (count(array_filter($toComplete))) ? implode('_', $toComplete) : null; |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | /** |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | $entry = $record->getEntry($primaryKey); |
| 51 | 51 | if (in_array($entry->getType(), [IEntryType::TYPE_INTEGER, IEntryType::TYPE_FLOAT])) { |
| 52 | 52 | if (empty($entry->getData())) { |
| 53 | - $data = empty($records) ? 1 : intval(max(array_column($records, $primaryKey))) + 1 ; |
|
| 53 | + $data = empty($records) ? 1 : intval(max(array_column($records, $primaryKey))) + 1; |
|
| 54 | 54 | $entry->setData($data); |
| 55 | 55 | } |
| 56 | 56 | } |
@@ -42,14 +42,14 @@ |
||
| 42 | 42 | // through relations |
| 43 | 43 | foreach ($toCompare as $relationKey => $compareValue) { |
| 44 | 44 | foreach ($this->records as $positionKey => $knownRecord) { |
| 45 | - if ( !isset($toProcess[$positionKey]) ) { // not twice |
|
| 45 | + if (!isset($toProcess[$positionKey])) { // not twice |
|
| 46 | 46 | continue; |
| 47 | 47 | } |
| 48 | - if ( !$knownRecord->offsetExists($relationKey) ) { // unknown relation key in record is not allowed into compare |
|
| 48 | + if (!$knownRecord->offsetExists($relationKey)) { // unknown relation key in record is not allowed into compare |
|
| 49 | 49 | unset($toProcess[$positionKey]); |
| 50 | 50 | continue; |
| 51 | 51 | } |
| 52 | - if ( strval($knownRecord->offsetGet($relationKey)) != strval($compareValue) ) { |
|
| 52 | + if (strval($knownRecord->offsetGet($relationKey)) != strval($compareValue)) { |
|
| 53 | 53 | unset($toProcess[$positionKey]); |
| 54 | 54 | continue; |
| 55 | 55 | } |