Completed
Push — master ( 09c84d...fe53c9 )
by Dmitry
02:55
created
src/repositories/ActiveQuery.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
 {
9 9
     public $repository;
10 10
 
11
+    /**
12
+     * @param BaseRepository $value
13
+     */
11 14
     public function setRepository($value)
12 15
     {
13 16
         $this->repository = $value;
Please login to merge, or discard this patch.
src/repositories/BaseRepository.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@
 block discarded – undo
35 35
         $this->recordClass = $value;
36 36
     }
37 37
 
38
+    /**
39
+     * @return string
40
+     */
38 41
     public function getRecordClass()
39 42
     {
40 43
         if ($this->recordClass === null) {
Please login to merge, or discard this patch.