Browse Source

Remove hasAllowsNull as it is unused.

Mark Story 2 years ago
parent
commit
8e14488a89
1 changed files with 0 additions and 10 deletions
  1. 0 10
      src/Datasource/EntityTrait.php

+ 0 - 10
src/Datasource/EntityTrait.php

@@ -136,16 +136,6 @@ trait EntityTrait
     protected bool $requireFieldPresence = false;
 
     /**
-     * Set to true in your entity's class definition or
-     * via application logic. When true. has() and related
-     * methods will use `array_key_exists` instead of `isset`
-     * to decide if fields are 'defined' in an entity.
-     *
-     * @var bool
-     */
-    protected $_hasAllowsNull = false;
-
-    /**
      * Magic getter to access fields that have been set in this entity
      *
      * @param string $field Name of the field to access