Completed
Push — master ( fad2ec...a017dd )
by Dmitry
03:58
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
@@ -79,6 +79,9 @@
 block discarded – undo
79 79
         return Yii::createObject($this->getQueryClass());
80 80
     }
81 81
 
82
+    /**
83
+     * @return callable
84
+     */
82 85
     protected function getQueryClass()
83 86
     {
84 87
         return $this->queryClass;
Please login to merge, or discard this patch.