1 | <?php |
||
8 | /** |
||
9 | * Class WriteRepository |
||
10 | */ |
||
11 | class WriteRepository |
||
12 | { |
||
13 | /** |
||
14 | * @var WebPageRepository |
||
15 | */ |
||
16 | protected $repository; |
||
17 | |||
18 | /** |
||
19 | * WriteRepository constructor. |
||
20 | * |
||
21 | * @param WebPageRepository $repository |
||
22 | */ |
||
23 | public function __construct(WebPageRepository $repository) |
||
44 |