| 1 | <?php |
||
| 17 | class ConfigLock { |
||
| 18 | /** |
||
| 19 | * @Type("boolean") |
||
| 20 | */ |
||
| 21 | private $locked; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @Type("string") |
||
| 25 | */ |
||
| 26 | private $since; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @Type("array") |
||
| 30 | */ |
||
| 31 | private $repositories; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param $locked |
||
| 35 | * @return $this |
||
| 36 | */ |
||
| 37 | public function isLocked($locked = null) { |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @param $since |
||
| 49 | * @return $this |
||
| 50 | */ |
||
| 51 | public function since($since) { |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @param \Illuminate\Support\Collection $repositories |
||
| 59 | * @return $this |
||
| 60 | */ |
||
| 61 | public function by(Collection $repositories) { |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @return \Illuminate\Support\Collection $repositories |
||
| 69 | */ |
||
| 70 | public function getRepositories() { |
||
| 73 | } |
||
| 74 |