AggregateRoot::__set()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 1
1
<?php namespace C4tech\RayEmitter\Contracts\Domain;
2
3
interface AggregateRoot extends Entity
4
{
5
    /**
6
     * Make Entity
7
     *
8
     * Transform this Root into a read-only Entity.
9
     * @return Entity
10
     */
11
    public function makeEntity();
12
13
    /**
14
     * Magic Setter
15
     *
16
     * Expose setter methods as properties.
17
     * @param  string $property Requested "property"
18
     * @param  mixed  $value    Requested value
19
     * @return mixed
20
     */
21
    public function __set($property, $value);
22
}
23