File: Defaults.php

package info (click to toggle)
icinga-php-library 0.18.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,160 kB
  • sloc: php: 48,772; javascript: 9,318; makefile: 9
file content (52 lines) | stat: -rw-r--r-- 1,137 bytes parent folder | download | duplicates (3)
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
<?php

namespace ipl\Orm;

use IteratorAggregate;
use Traversable;

class Defaults implements IteratorAggregate
{
    /** @var array<string, mixed> Registered defaults */
    protected $defaults = [];

    /**
     * Iterate over the defaults
     *
     * @return Traversable
     */
    public function getIterator(): Traversable
    {
        foreach ($this->defaults as $column => $default) {
            yield $column => $default;
        }
    }

    /**
     * Add a default for the given property
     *
     * @param string $property
     * @param mixed $default If it's a closure, its interface is assumed to be
     *                       ({@see Model} $subject, string $propertyName)
     *
     * @return $this
     */
    public function add(string $property, $default): self
    {
        $this->defaults[$property] = $default;

        return $this;
    }

    /**
     * Get whether a default for the given property exists
     *
     * @param string $property
     *
     * @return bool
     */
    public function has(string $property): bool
    {
        return array_key_exists($property, $this->defaults);
    }
}