Code Duplication    Length = 3-3 lines in 2 locations

src/NukaCode/Database/Collection.php 2 locations

@@ 384-386 (lines=3) @@
381
382
    private function getWhereNull($object, $column, $value, $inverse)
383
    {
384
        if ((! is_null($object->$column) || $object->$column != null) && $inverse == false) {
385
            return true;
386
        }
387
        if ((is_null($object->$column) || $object->$column == null) && $inverse == true) {
388
            return true;
389
        }
@@ 387-389 (lines=3) @@
384
        if ((! is_null($object->$column) || $object->$column != null) && $inverse == false) {
385
            return true;
386
        }
387
        if ((is_null($object->$column) || $object->$column == null) && $inverse == true) {
388
            return true;
389
        }
390
391
        return false;
392
    }