Completed
Push — develop-3.0 ( 4fe777...24fc5d )
by Mohamed
09:15
created
app/Providers/AppServiceProvider.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,6 @@
 block discarded – undo
16 16
 use Illuminate\Support\ServiceProvider;
17 17
 use Tinyissue\Console\Commands;
18 18
 use Tinyissue\Contracts\Form\FormInterface;
19
-use Tinyissue\Contracts\Model\UserInterface;
20
-use Tinyissue\Model\User;
21 19
 use Tinyissue\Services;
22 20
 
23 21
 //use Illuminate\Contracts\Foundation\Application;
Please login to merge, or discard this patch.
app/Repository/Project/Issue/Updater.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Illuminate\Support\Collection;
15 15
 use Tinyissue\Contracts\Model\UserInterface;
16 16
 use Tinyissue\Model\Activity;
17
-use Tinyissue\Model\Permission;
18 17
 use Tinyissue\Model\Project;
19 18
 use Tinyissue\Model\Tag;
20 19
 use Tinyissue\Model\User;
Please login to merge, or discard this patch.
app/Repository/RepositoryUpdater.php 1 patch
Doc Comments   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     /**
44 44
      * @param array $data
45 45
      *
46
-     * @return mixed
46
+     * @return boolean
47 47
      */
48 48
     public function create(array $data)
49 49
     {
@@ -51,16 +51,18 @@  discard block
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-     * @param array $data
55 54
      * @param       $id
56 55
      *
57
-     * @return mixed
56
+     * @return boolean
58 57
      */
59 58
     public function update(array $attributes = [])
60 59
     {
61 60
         return $this->model->update($attributes);
62 61
     }
63 62
 
63
+    /**
64
+     * @param string $method
65
+     */
64 66
     protected function transaction($method)
65 67
     {
66 68
         return DB::transaction(function () use ($method) {
Please login to merge, or discard this patch.
app/Repository/User/Counter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use Illuminate\Database\Eloquent\Relations;
15 15
 use Tinyissue\Contracts\Model\UserInterface;
16
-use Tinyissue\Model\Permission;
17 16
 use Tinyissue\Model\Project;
18 17
 use Tinyissue\Repository\Repository;
19 18
 
Please login to merge, or discard this patch.
app/Repository/User/Fetcher.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Illuminate\Database\Eloquent;
15 15
 use Illuminate\Database\Eloquent\Relations;
16 16
 use Tinyissue\Contracts\Model\UserInterface;
17
-use Tinyissue\Model\Permission;
18 17
 use Tinyissue\Model\Project;
19 18
 use Tinyissue\Model\User;
20 19
 use Tinyissue\Repository\Repository;
Please login to merge, or discard this patch.