Completed
Branch master (92a9f3)
by Robert
03:02
created
models/Account.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -136,6 +136,7 @@
 block discarded – undo
136 136
     /**
137 137
      * Finds an account by email
138 138
      * @param string $email The email
139
+     * @return Account
139 140
      */
140 141
     public function findByEmail($email)
141 142
     {
Please login to merge, or discard this patch.
models/DuelShield.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@
 block discarded – undo
54 54
         ];
55 55
     }
56 56
 
57
+    /**
58
+     * @param integer $time
59
+     */
57 60
     public function activate($time)
58 61
     {
59 62
         $player = Yii::app()->player->model;
Please login to merge, or discard this patch.
models/Store.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -80,6 +80,10 @@
 block discarded – undo
80 80
 
81 81
         return $missing;
82 82
     }
83
+
84
+    /**
85
+     * @param integer $id
86
+     */
83 87
     public function buySetItem($id)
84 88
     {
85 89
         $player = Yii::app()->player->model;
Please login to merge, or discard this patch.