1 <?php namespace BookStack\Repos;
3 use BookStack\Attribute;
5 use BookStack\Services\PermissionService;
9 * @package BookStack\Repos
16 protected $permissionService;
19 * AttributeRepo constructor.
20 * @param Attribute $attr
22 * @param PermissionService $ps
24 public function __construct(Attribute $attr, Entity $ent, PermissionService $ps)
26 $this->attribute = $attr;
28 $this->permissionService = $ps;