Code Duplication    Length = 3-3 lines in 2 locations

src/NukaCode/Database/Collection.php 2 locations

@@ 390-392 (lines=3) @@
387
388
    private function getWhereNull($object, $column, $value, $inverse)
389
    {
390
        if ((! is_null($object->$column) || $object->$column != null) && $inverse == false) {
391
            return true;
392
        }
393
        if ((is_null($object->$column) || $object->$column == null) && $inverse == true) {
394
            return true;
395
        }
@@ 393-395 (lines=3) @@
390
        if ((! is_null($object->$column) || $object->$column != null) && $inverse == false) {
391
            return true;
392
        }
393
        if ((is_null($object->$column) || $object->$column == null) && $inverse == true) {
394
            return true;
395
        }
396
397
        return false;
398
    }