@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | private function load_by_properties(array $properties) |
| 63 | 63 | { |
| 64 | - if ( !array_key_exists('authtype', $properties) |
|
| 64 | + if (!array_key_exists('authtype', $properties) |
|
| 65 | 65 | || !array_key_exists('login', $properties)) { |
| 66 | 66 | throw exception::invalid_property_value(); |
| 67 | 67 | } |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | |
| 110 | 110 | public function &get_person() |
| 111 | 111 | { |
| 112 | - if ( $this->person_object === null |
|
| 112 | + if ($this->person_object === null |
|
| 113 | 113 | && $this->person !== null) { |
| 114 | 114 | $this->person_object = connection::get_em()->getRepository('midgard:midgard_person')->findOneBy(['guid' => $this->person]); |
| 115 | 115 | } |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | |
| 119 | 119 | public function create() |
| 120 | 120 | { |
| 121 | - if ( empty($this->authtype) |
|
| 121 | + if (empty($this->authtype) |
|
| 122 | 122 | || !empty($this->id)) { |
| 123 | 123 | exception::invalid_property_value(); |
| 124 | 124 | return false; |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | |
| 183 | 183 | protected function is_unique() |
| 184 | 184 | { |
| 185 | - if ( empty($this->login) |
|
| 185 | + if (empty($this->login) |
|
| 186 | 186 | || empty($this->authtype)) { |
| 187 | 187 | return true; |
| 188 | 188 | } |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | if (!($entity instanceof repligard)) { |
| 100 | 100 | $repligard_entry = $em->getRepository('midgard:midgard_repligard')->findOneBy(['guid' => $entity->guid]); |
| 101 | 101 | |
| 102 | - if ( $entity instanceof metadata |
|
| 102 | + if ($entity instanceof metadata |
|
| 103 | 103 | && $entity->{metadata::DELETED_FIELD}) { |
| 104 | 104 | $repligard_entry->object_action = self::ACTION_DELETE; |
| 105 | 105 | } else { |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | |
| 141 | 141 | foreach ($columns as $name => &$config) { |
| 142 | 142 | if ($platform->getName() === 'sqlite') { |
| 143 | - if ( !empty($config['primary']) |
|
| 143 | + if (!empty($config['primary']) |
|
| 144 | 144 | && !empty($config['autoincrement'])) { |
| 145 | 145 | /* |
| 146 | 146 | * This is essentially a workaround for http://www.doctrine-project.org/jira/browse/DBAL-642 |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | $modified = true; |
| 150 | 150 | $config['columnDefinition'] = 'INTEGER PRIMARY KEY AUTOINCREMENT'; |
| 151 | 151 | } |
| 152 | - if ( !empty($config['comment']) |
|
| 152 | + if (!empty($config['comment']) |
|
| 153 | 153 | && $config['comment'] == 'BINARY') { |
| 154 | 154 | $modified = true; |
| 155 | 155 | $config['columnDefinition'] = $config['type']->getSQLDeclaration($config, $platform) . ' COLLATE BINARY' . $platform->getDefaultValueDeclarationSQL($config); |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | $config['columnDefinition'] = $config['comment'] . $platform->getDefaultValueDeclarationSQL($config); |
| 167 | 167 | } |
| 168 | 168 | if (!empty($config['columnDefinition']) && $platform->supportsInlineColumnComments()) { |
| 169 | - $config['columnDefinition'] .= " COMMENT " . $platform->quoteStringLiteral($config['comment']); |
|
| 169 | + $config['columnDefinition'] .= " COMMENT " . $platform->quoteStringLiteral($config['comment']); |
|
| 170 | 170 | } |
| 171 | 171 | } |
| 172 | 172 | } |
@@ -260,7 +260,7 @@ discard block |
||
| 260 | 260 | public function postGenerateSchemaTable(GenerateSchemaTableEventArgs $args) |
| 261 | 261 | { |
| 262 | 262 | $table = $args->getClassTable(); |
| 263 | - if ( !$table->hasOption('engine') |
|
| 263 | + if (!$table->hasOption('engine') |
|
| 264 | 264 | || $table->getOption('engine') !== 'MyISAM') { |
| 265 | 265 | return; |
| 266 | 266 | } |