-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathBoolean.php
54 lines (47 loc) · 1.24 KB
/
Boolean.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/*
* Copyright 2024 Cloud Creativity Limited
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
*/
declare(strict_types=1);
namespace LaravelJsonApi\Eloquent\Fields;
use LaravelJsonApi\Validation\Fields\IsValidated;
use LaravelJsonApi\Validation\Fields\ValidatedWithRules;
use LaravelJsonApi\Validation\Rules\JsonBoolean;
class Boolean extends Attribute implements IsValidated
{
use ValidatedWithRules;
/**
* Create a boolean attribute.
*
* @param string $fieldName
* @param string|null $column
* @return Boolean
*/
public static function make(string $fieldName, string $column = null): self
{
return new self($fieldName, $column);
}
/**
* @return array
*/
protected function defaultRules(): array
{
return [new JsonBoolean()];
}
/**
* @inheritDoc
*/
protected function assertValue($value): void
{
if ($value !== null && !is_bool($value)) {
throw new \UnexpectedValueException(sprintf(
'Expecting the value of attribute %s to be a boolean.',
$this->name()
));
}
}
}