We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c15118 commit 06c01f6Copy full SHA for 06c01f6
src/Models/Model.php
@@ -8,6 +8,7 @@
8
use StellarWP\Models\Contracts\Model as ModelInterface;
9
10
abstract class Model implements ModelInterface, Arrayable, JsonSerializable {
11
+ // Define modes as powers of two so we can use them for bitwise operations.
12
public const BUILD_MODE_STRICT = 0;
13
public const BUILD_MODE_IGNORE_MISSING = 1;
14
public const BUILD_MODE_IGNORE_EXTRA = 2;
0 commit comments