Completed
Push — master ( f53792...fddfa5 )
by Philip
03:43
created

MySQLData::hasManySet()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 22
Code Lines 19

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 22
rs 9.2
c 0
b 0
f 0
cc 2
eloc 19
nc 2
nop 3
1
<?php
2
3
/*
4
 * This file is part of the CRUDlex package.
5
 *
6
 * (c) Philip Lehmann-Böhm <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace CRUDlex;
13
14
use Doctrine\DBAL\Connection;
15
use Doctrine\DBAL\Query\QueryBuilder;
16
17
/**
18
 * MySQL Data implementation using a given Doctrine DBAL instance.
19
 */
20
class MySQLData extends AbstractData {
21
22
    /**
23
     * Holds the Doctrine DBAL instance.
24
     */
25
    protected $database;
26
27
    /**
28
     * Flag whether to use UUIDs as primary key.
29
     */
30
    protected $useUUIDs;
31
32
    /**
33
     * Gets the many-to-many fields.
34
     *
35
     * @return array|\string[]
36
     * the many-to-many fields
37
     */
38
    protected function getManyFields() {
39
        $fields = $this->definition->getFieldNames(true);
40
        return array_filter($fields, function($field) {
41
            return $this->definition->getType($field) === 'many';
42
        });
43
    }
44
45
    /**
46
     * Gets all form fields including the many-to-many-ones.
47
     *
48
     * @return array
49
     * all form fields
50
     */
51
    protected function getFormFields() {
52
        $manyFields = $this->getManyFields();
53
        $formFields = [];
54
        foreach ($this->definition->getEditableFieldNames() as $field) {
55
            if (!in_array($field, $manyFields)) {
56
                $formFields[] = $field;
57
            }
58
        }
59
        return $formFields;
60
    }
61
62
    /**
63
     * Sets the values and parameters of the upcoming given query according
64
     * to the entity.
65
     *
66
     * @param Entity $entity
67
     * the entity with its fields and values
68
     * @param QueryBuilder $queryBuilder
69
     * the upcoming query
70
     * @param string $setMethod
71
     * what method to use on the QueryBuilder: 'setValue' or 'set'
72
     */
73
    protected function setValuesAndParameters(Entity $entity, QueryBuilder $queryBuilder, $setMethod) {
74
        $formFields = $this->getFormFields();
75
        $count      = count($formFields);
76
        for ($i = 0; $i < $count; ++$i) {
77
            $type  = $this->definition->getType($formFields[$i]);
78
            $value = $entity->get($formFields[$i]);
79
            if ($type == 'boolean') {
80
                $value = $value ? 1 : 0;
81
            }
82
            $queryBuilder->$setMethod('`'.$formFields[$i].'`', '?');
83
            $queryBuilder->setParameter($i, $value);
84
        }
85
    }
86
87
    /**
88
     * Performs the cascading children deletion.
89
     *
90
     * @param integer $id
91
     * the current entities id
92
     * @param boolean $deleteCascade
93
     * whether to delete children and sub children
94
     */
95
    protected function deleteChildren($id, $deleteCascade) {
96
        foreach ($this->definition->getChildren() as $childArray) {
97
            $childData = $this->definition->getServiceProvider()->getData($childArray[2]);
98
            $children  = $childData->listEntries([$childArray[1] => $id]);
99
            foreach ($children as $child) {
100
                $childData->doDelete($child, $deleteCascade);
101
            }
102
        }
103
    }
104
105
    /**
106
     * Checks whether the by id given entity still has children referencing it.
107
     *
108
     * @param integer $id
109
     * the current entities id
110
     *
111
     * @return boolean
112
     * true if the entity still has children
113
     */
114
    protected function hasChildren($id) {
115
        foreach ($this->definition->getChildren() as $child) {
116
            $queryBuilder = $this->database->createQueryBuilder();
117
            $queryBuilder
118
                ->select('COUNT(id)')
119
                ->from('`'.$child[0].'`', '`'.$child[0].'`')
120
                ->where('`'.$child[1].'` = ?')
121
                ->andWhere('deleted_at IS NULL')
122
                ->setParameter(0, $id);
123
            $queryResult = $queryBuilder->execute();
124
            $result      = $queryResult->fetch(\PDO::FETCH_NUM);
125
            if ($result[0] > 0) {
126
                return true;
127
            }
128
        }
129
        return false;
130
    }
131
132
    /**
133
     * {@inheritdoc}
134
     */
135
    protected function doDelete(Entity $entity, $deleteCascade) {
136
        $result = $this->shouldExecuteEvents($entity, 'before', 'delete');
137
        if (!$result) {
138
            return static::DELETION_FAILED_EVENT;
139
        }
140
        $id = $entity->get('id');
141
        if ($deleteCascade) {
142
            $this->deleteChildren($id, $deleteCascade);
143
        } elseif ($this->hasChildren($id)) {
144
            return static::DELETION_FAILED_STILL_REFERENCED;
145
        }
146
147
        $query = $this->database->createQueryBuilder();
148
        $query
149
            ->update('`'.$this->definition->getTable().'`')
150
            ->set('deleted_at', 'UTC_TIMESTAMP()')
151
            ->where('id = ?')
152
            ->setParameter(0, $id);
153
154
        $query->execute();
155
        $this->shouldExecuteEvents($entity, 'after', 'delete');
156
        return static::DELETION_SUCCESS;
157
    }
158
159
    /**
160
     * Gets all possible many-to-many ids existing for this definition.
161
     *
162
     * @param array $fields
163
     * the many field names to fetch for
164
     * @param $params
165
     * the parameters the possible many field values to fetch for
166
     * @return array
167
     * an array of this many-to-many ids
168
     */
169
    protected function getManyIds(array $fields, array $params) {
170
        $manyIds = [];
171
        foreach ($fields as $field) {
172
            $thisField    = $this->definition->getSubTypeField($field, 'many', 'thisField');
173
            $thatField    = $this->definition->getSubTypeField($field, 'many', 'thatField');
174
            $queryBuilder = $this->database->createQueryBuilder();
175
            $queryBuilder
176
                ->select('`'.$thisField.'`')
177
                ->from($field)
178
                ->where('`'.$thatField.'` IN (?)')
179
                ->setParameter(0, array_column($params[$field], 'id'), Connection::PARAM_STR_ARRAY)
180
                ->groupBy('`'.$thisField.'`')
181
            ;
182
            $queryResult = $queryBuilder->execute();
183
            $manyResults = $queryResult->fetchAll(\PDO::FETCH_ASSOC);
184
            $manyIds     = array_merge($manyIds, array_column($manyResults, $thisField));
185
186
        }
187
        return $manyIds;
188
    }
189
190
    /**
191
     * Adds sorting parameters to the query.
192
     *
193
     * @param QueryBuilder $queryBuilder
194
     * the query
195
     * @param $filter
196
     * the filter all resulting entities must fulfill, the keys as field names
197
     * @param $filterOperators
198
     * the operators of the filter like "=" defining the full condition of the field
199
     */
200
    protected function addFilter(QueryBuilder $queryBuilder, array $filter, array $filterOperators) {
201
        $i          = 0;
202
        $manyFields = [];
203
        foreach ($filter as $field => $value) {
204
            if ($this->definition->getType($field) === 'many') {
205
                $manyFields[] = $field;
206
                continue;
207
            }
208
            if ($value === null) {
209
                $queryBuilder->andWhere('`'.$field.'` IS NULL');
210
            } else {
211
                $operator = array_key_exists($field, $filterOperators) ? $filterOperators[$field] : '=';
212
                $queryBuilder
213
                    ->andWhere('`'.$field.'` '.$operator.' ?')
214
                    ->setParameter($i, $value, \PDO::PARAM_STR);
215
            }
216
            $i++;
217
        }
218
        $idsToInclude = $this->getManyIds($manyFields, $filter);
219
        if (!empty($idsToInclude)) {
220
            $queryBuilder
221
                ->andWhere('id IN (?)')
222
                ->setParameter($i, $idsToInclude, Connection::PARAM_STR_ARRAY)
223
            ;
224
        }
225
    }
226
227
    /**
228
     * Adds pagination parameters to the query.
229
     *
230
     * @param QueryBuilder $queryBuilder
231
     * the query
232
     * @param integer|null $skip
233
     * the rows to skip
234
     * @param integer|null $amount
235
     * the maximum amount of rows
236
     */
237
    protected function addPagination(QueryBuilder $queryBuilder, $skip, $amount) {
238
        $queryBuilder->setMaxResults(9999999999);
239
        if ($amount !== null) {
240
            $queryBuilder->setMaxResults(abs(intval($amount)));
241
        }
242
        if ($skip !== null) {
243
            $queryBuilder->setFirstResult(abs(intval($skip)));
244
        }
245
    }
246
247
    /**
248
     * Adds sorting parameters to the query.
249
     *
250
     * @param QueryBuilder $queryBuilder
251
     * the query
252
     * @param string|null $sortField
253
     * the sort field
254
     * @param boolean|null $sortAscending
255
     * true if sort ascending, false if descending
256
     */
257
    protected function addSort(QueryBuilder $queryBuilder, $sortField, $sortAscending) {
258
        if ($sortField !== null) {
259
260
            $type = $this->definition->getType($sortField);
261
            if ($type === 'many') {
262
                $sortField = $this->definition->getInitialSortField();
263
            }
264
265
            $order = $sortAscending === true ? 'ASC' : 'DESC';
266
            $queryBuilder->orderBy('`'.$sortField.'`', $order);
267
        }
268
    }
269
270
    /**
271
     * Adds the id and name of referenced entities to the given entities. The
272
     * reference field is before the raw id of the referenced entity and after
273
     * the fetch, it's an array with the keys id and name.
274
     *
275
     * @param Entity[] &$entities
276
     * the entities to fetch the references for
277
     * @param string $field
278
     * the reference field
279
     */
280
    protected function fetchReferencesForField(array &$entities, $field) {
281
        $nameField    = $this->definition->getSubTypeField($field, 'reference', 'nameField');
282
        $queryBuilder = $this->database->createQueryBuilder();
283
284
        $ids = array_map(function(Entity $entity) use ($field) {
285
            return $entity->get($field);
286
        }, $entities);
287
288
        $referenceEntity = $this->definition->getSubTypeField($field, 'reference', 'entity');
289
        $table           = $this->definition->getServiceProvider()->getData($referenceEntity)->getDefinition()->getTable();
290
        $queryBuilder
291
            ->from('`'.$table.'`', '`'.$table.'`')
292
            ->where('id IN (?)')
293
            ->andWhere('deleted_at IS NULL');
294
        if ($nameField) {
295
            $queryBuilder->select('id', $nameField);
296
        } else {
297
            $queryBuilder->select('id');
298
        }
299
300
        $queryBuilder->setParameter(0, $ids, Connection::PARAM_STR_ARRAY);
301
302
        $queryResult = $queryBuilder->execute();
303
        $rows        = $queryResult->fetchAll(\PDO::FETCH_ASSOC);
304
        $amount      = count($entities);
305
        foreach ($rows as $row) {
306
            for ($i = 0; $i < $amount; ++$i) {
307
                if ($entities[$i]->get($field) == $row['id']) {
308
                    $value = ['id' => $entities[$i]->get($field)];
309
                    if ($nameField) {
310
                        $value['name'] = $row[$nameField];
311
                    }
312
                    $entities[$i]->set($field, $value);
313
                }
314
            }
315
        }
316
    }
317
318
    /**
319
     * Generates a new UUID.
320
     *
321
     * @return string|null
322
     * the new UUID or null if this instance isn't configured to do so
323
     */
324
    protected function generateUUID() {
325
        $uuid = null;
326
        if ($this->useUUIDs) {
327
            $sql    = 'SELECT UUID() as id';
328
            $result = $this->database->fetchAssoc($sql);
329
            $uuid   = $result['id'];
330
        }
331
        return $uuid;
332
    }
333
334
    /**
335
     * Enriches the given mapping of entity id to raw entity data with some many-to-many data.
336
     *
337
     * @param array $idToData
338
     * a reference to the map entity id to raw entity data
339
     * @param $manyField
340
     * the many field to enrich data with
341
     */
342
    protected function enrichWithManyField(&$idToData, $manyField) {
343
        $queryBuilder = $this->database->createQueryBuilder();
344
        $nameField    = $this->definition->getSubTypeField($manyField, 'many', 'nameField');
345
        $thisField    = $this->definition->getSubTypeField($manyField, 'many', 'thisField');
346
        $thatField    = $this->definition->getSubTypeField($manyField, 'many', 'thatField');
347
        $entity       = $this->definition->getSubTypeField($manyField, 'many', 'entity');
348
        $entityTable  = $this->definition->getServiceProvider()->getData($entity)->getDefinition()->getTable();
349
        $nameSelect   = $nameField !== null ? ', t2.`'.$nameField.'` AS name' : '';
350
        $queryBuilder
351
            ->select('t1.`'.$thisField.'` AS this, t1.`'.$thatField.'` AS id'.$nameSelect)
352
            ->from('`'.$manyField.'`', 't1')
353
            ->leftJoin('t1', '`'.$entityTable.'`', 't2', 't2.id = t1.`'.$thatField.'`')
354
            ->where('t1.`'.$thisField.'` IN (?)')
355
            ->andWhere('t2.deleted_at IS NULL');
356
        $queryBuilder->setParameter(0, array_keys($idToData), Connection::PARAM_STR_ARRAY);
357
        $queryResult    = $queryBuilder->execute();
358
        $manyReferences = $queryResult->fetchAll(\PDO::FETCH_ASSOC);
359
        foreach ($manyReferences as $manyReference) {
360
            $entityId = $manyReference['this'];
361
            unset($manyReference['this']);
362
            $idToData[$entityId][$manyField][] = $manyReference;
363
        }
364
    }
365
366
    /**
367
     * Fetches to the rows belonging many-to-many entries and adds them to the rows.
368
     *
369
     * @param array $rows
370
     * the rows to enrich
371
     * @return array
372
     * the enriched rows
373
     */
374
    protected function enrichWithMany(array $rows) {
375
        $manyFields = $this->getManyFields();
376
        $idToData   = [];
377
        foreach ($rows as $row) {
378
            foreach ($manyFields as $manyField) {
379
                $row[$manyField] = [];
380
            }
381
            $idToData[$row['id']] = $row;
382
        }
383
        foreach ($manyFields as $manyField) {
384
            $this->enrichWithManyField($idToData, $manyField);
385
        }
386
        return array_values($idToData);
387
    }
388
389
    /**
390
     * First, deletes all to the given entity related many-to-many entries from the DB
391
     * and then writes them again.
392
     *
393
     * @param Entity $entity
394
     * the entity to save the many-to-many entries of
395
     */
396
    protected function saveMany(Entity $entity) {
397
        $manyFields = $this->getManyFields();
398
        $id         = $entity->get('id');
399
        foreach ($manyFields as $manyField) {
400
            $thisField = $this->definition->getSubTypeField($manyField, 'many', 'thisField');
401
            $thatField = $this->definition->getSubTypeField($manyField, 'many', 'thatField');
402
            $this->database->delete($manyField, [$thisField => $id]);
403
            $manyValues = $entity->get($manyField) ?: [];
404
            foreach ($manyValues as $thatId) {
405
                $this->database->insert($manyField, [
406
                    $thisField => $id,
407
                    $thatField => $thatId['id']
408
                ]);
409
            }
410
        }
411
    }
412
413
    /**
414
     * Constructor.
415
     *
416
     * @param EntityDefinition $definition
417
     * the entity definition
418
     * @param FileProcessorInterface $fileProcessor
419
     * the file processor to use
420
     * @param $database
421
     * the Doctrine DBAL instance to use
422
     * @param boolean $useUUIDs
423
     * flag whether to use UUIDs as primary key
424
     */
425
    public function __construct(EntityDefinition $definition, FileProcessorInterface $fileProcessor, $database, $useUUIDs) {
426
        $this->definition    = $definition;
427
        $this->fileProcessor = $fileProcessor;
428
        $this->database      = $database;
429
        $this->useUUIDs      = $useUUIDs;
430
    }
431
432
    /**
433
     * {@inheritdoc}
434
     */
435
    public function get($id) {
436
        $entities = $this->listEntries(['id' => $id]);
437
        if (count($entities) == 0) {
438
            return null;
439
        }
440
        return $entities[0];
441
    }
442
443
    /**
444
     * {@inheritdoc}
445
     */
446
    public function listEntries(array $filter = [], array $filterOperators = [], $skip = null, $amount = null, $sortField = null, $sortAscending = null) {
447
        $fieldNames = $this->definition->getFieldNames();
448
449
        $queryBuilder = $this->database->createQueryBuilder();
450
        $table        = $this->definition->getTable();
451
        $queryBuilder
452
            ->select('`'.implode('`,`', $fieldNames).'`')
453
            ->from('`'.$table.'`', '`'.$table.'`')
454
            ->where('deleted_at IS NULL');
455
456
        $this->addFilter($queryBuilder, $filter, $filterOperators);
457
        $this->addPagination($queryBuilder, $skip, $amount);
458
        $this->addSort($queryBuilder, $sortField, $sortAscending);
459
460
        $queryResult = $queryBuilder->execute();
461
        $rows        = $queryResult->fetchAll(\PDO::FETCH_ASSOC);
462
        $rows        = $this->enrichWithMany($rows);
463
        $entities    = [];
464
        foreach ($rows as $row) {
465
            $entities[] = $this->hydrate($row);
466
        }
467
        return $entities;
468
    }
469
470
    /**
471
     * {@inheritdoc}
472
     */
473
    public function create(Entity $entity) {
474
475
        $result = $this->shouldExecuteEvents($entity, 'before', 'create');
476
        if (!$result) {
477
            return false;
478
        }
479
480
        $queryBuilder = $this->database->createQueryBuilder();
481
        $queryBuilder
482
            ->insert('`'.$this->definition->getTable().'`')
483
            ->setValue('created_at', 'UTC_TIMESTAMP()')
484
            ->setValue('updated_at', 'UTC_TIMESTAMP()')
485
            ->setValue('version', 0);
486
487
488
        $this->setValuesAndParameters($entity, $queryBuilder, 'setValue');
489
490
        $id = $this->generateUUID();
491
        if ($this->useUUIDs) {
492
            $queryBuilder->setValue('`id`', '?');
493
            $uuidI = count($this->getFormFields());
494
            $queryBuilder->setParameter($uuidI, $id);
495
        }
496
497
        $queryBuilder->execute();
498
499
        if (!$this->useUUIDs) {
500
            $id = $this->database->lastInsertId();
501
        }
502
503
        $this->enrichEntityWithMetaData($id, $entity);
504
505
        $this->saveMany($entity);
506
507
        $this->shouldExecuteEvents($entity, 'after', 'create');
508
509
        return true;
510
    }
511
512
    /**
513
     * {@inheritdoc}
514
     */
515
    public function update(Entity $entity) {
516
517
        if (!$this->shouldExecuteEvents($entity, 'before', 'update')) {
518
            return false;
519
        }
520
521
        $queryBuilder = $this->database->createQueryBuilder();
522
        $queryBuilder->update('`'.$this->definition->getTable().'`')
523
            ->set('updated_at', 'UTC_TIMESTAMP()')
524
            ->set('version', 'version + 1')
525
            ->where('id = ?')
526
            ->setParameter(count($this->getFormFields()), $entity->get('id'));
527
528
        $this->setValuesAndParameters($entity, $queryBuilder, 'set');
529
        $affected = $queryBuilder->execute();
530
531
        $this->saveMany($entity);
532
533
        $this->shouldExecuteEvents($entity, 'after', 'update');
534
535
        return $affected;
536
    }
537
538
    /**
539
     * {@inheritdoc}
540
     */
541
    public function getIdToNameMap($entity, $nameField) {
542
        $nameSelect   = $nameField !== null ? ',`'.$nameField.'`' : '';
543
        $drivingField = $nameField ?: 'id';
544
545
        $table        = $this->definition->getServiceProvider()->getData($entity)->getDefinition()->getTable();
546
        $queryBuilder = $this->database->createQueryBuilder();
547
        $queryBuilder
548
            ->select('id'.$nameSelect)
549
            ->from('`'.$table.'`', 't1')
550
            ->where('deleted_at IS NULL')
551
            ->orderBy($drivingField)
552
        ;
553
        $queryResult    = $queryBuilder->execute();
554
        $manyReferences = $queryResult->fetchAll(\PDO::FETCH_ASSOC);
555
        $result         = array_reduce($manyReferences, function(&$carry, $manyReference) use ($drivingField) {
556
            $carry[$manyReference['id']] = $manyReference[$drivingField];
557
            return $carry;
558
        }, []);
559
        return $result;
560
    }
561
562
    /**
563
     * {@inheritdoc}
564
     */
565
    public function countBy($table, array $params, array $paramsOperators, $excludeDeleted) {
566
        $queryBuilder = $this->database->createQueryBuilder();
567
        $queryBuilder
568
            ->select('COUNT(id)')
569
            ->from('`'.$table.'`', '`'.$table.'`')
570
        ;
571
572
        $deletedExcluder = 'where';
573
        $i               = 0;
574
        $manyFields      = [];
575
        foreach ($params as $name => $value) {
576
            if ($this->definition->getType($name) === 'many') {
577
                $manyFields[] = $name;
578
                continue;
579
            }
580
            $queryBuilder
581
                ->andWhere('`'.$name.'` '.$paramsOperators[$name].' ?')
582
                ->setParameter($i, $value, \PDO::PARAM_STR)
583
            ;
584
            $i++;
585
            $deletedExcluder = 'andWhere';
586
        }
587
588
        $idsToInclude = $this->getManyIds($manyFields, $params);
589
        if (!empty($idsToInclude)) {
590
            $queryBuilder
591
                ->andWhere('id IN (?)')
592
                ->setParameter($i, $idsToInclude, Connection::PARAM_STR_ARRAY)
593
            ;
594
            $deletedExcluder = 'andWhere';
595
        }
596
597
        if ($excludeDeleted) {
598
            $queryBuilder->$deletedExcluder('deleted_at IS NULL');
599
        }
600
601
        $queryResult = $queryBuilder->execute();
602
        $result      = $queryResult->fetch(\PDO::FETCH_NUM);
603
        return intval($result[0]);
604
    }
605
606
    /**
607
     * {@inheritdoc}
608
     */
609
    public function fetchReferences(array &$entities = null) {
610
        if (!$entities) {
611
            return;
612
        }
613
        foreach ($this->definition->getFieldNames() as $field) {
614
            if ($this->definition->getType($field) !== 'reference') {
615
                continue;
616
            }
617
            $this->fetchReferencesForField($entities, $field);
618
        }
619
    }
620
621
622
    /**
623
     * {@inheritdoc}
624
     */
625
    public function hasManySet($field, array $thatIds, $excludeId = null) {
626
        $thisField    = $this->definition->getSubTypeField($field, 'many', 'thisField');
627
        $thatField    = $this->definition->getSubTypeField($field, 'many', 'thatField');
628
        $thatEntity   = $this->definition->getSubTypeField($field, 'many', 'entity');
629
        $entityTable  = $this->definition->getServiceProvider()->getData($thatEntity)->getDefinition()->getTable();
630
        $queryBuilder = $this->database->createQueryBuilder();
631
        $queryBuilder->select('t1.`'.$thisField.'` AS this, t1.`'.$thatField.'` AS that')
632
            ->from('`'.$field.'`', 't1')
633
            ->leftJoin('t1', '`'.$entityTable.'`', 't2', 't2.id = t1.`'.$thatField.'`')
634
            ->where('t2.deleted_at IS NULL')
635
            ->orderBy('this, that');
636
        if ($excludeId) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $excludeId of type string|null is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
637
            $queryBuilder->andWhere('t1.`'.$thisField.'` != ?')->setParameter(0, $excludeId);
638
        }
639
        $existingMany = $queryBuilder->execute()->fetchAll(\PDO::FETCH_ASSOC);
640
        $existingMap = array_reduce($existingMany, function(&$carry, $existing) {
0 ignored issues
show
Coding Style introduced by
Equals sign not aligned with surrounding assignments; expected 2 spaces but found 1 space

This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line.

To visualize

$a = "a";
$ab = "ab";
$abc = "abc";

will produce issues in the first and second line, while this second example

$a   = "a";
$ab  = "ab";
$abc = "abc";

will produce no issues.

Loading history...
641
            $carry[$existing['this']][] = $existing['that'];
642
            return $carry;
643
        }, []);
644
        sort($thatIds);
645
        return in_array($thatIds, array_values($existingMap));
646
    }
647
648
}
649