Passed
Push — dev5 ( 9ca56e...5adb95 )
by Ron
08:24
created
app/Http/Controllers/FileLinks/FileLinksController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     public function find($id)
43 43
     {
44 44
         //  If the user is trying to access the links of another user, they must have the proper permissions permissions
45
-        if ($id != 0)
45
+        if($id != 0)
46 46
         {
47 47
             $this->authorize('hasAccess', 'manage_users');
48 48
         }
Please login to merge, or discard this patch.
app/Domains/FileLinks/GetFileLinks.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
                     ->orderBy('expire', 'desc')->get();
27 27
 
28 28
         Log::debug('Retrieved all File Links for User ID '.$this->id.'.  Data Gathered - ', array($links));
29
-        if ($this->collection) {
29
+        if($this->collection) {
30 30
             return new FileLinksCollection($links);
31 31
         }
32 32
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,8 @@
 block discarded – undo
26 26
                     ->orderBy('expire', 'desc')->get();
27 27
 
28 28
         Log::debug('Retrieved all File Links for User ID '.$this->id.'.  Data Gathered - ', array($links));
29
-        if ($this->collection) {
29
+        if ($this->collection)
30
+        {
30 31
             return new FileLinksCollection($links);
31 32
         }
32 33
 
Please login to merge, or discard this patch.
app/Domains/TechTips/GetTechTipStats.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,14 +12,14 @@
 block discarded – undo
12 12
 {
13 13
     public function getTipsInLastDays($numDays = 30)
14 14
     {
15
-        $tips  = TechTips::where('created_at', '>', Carbon::now()->subDays($numDays))->count();
15
+        $tips = TechTips::where('created_at', '>', Carbon::now()->subDays($numDays))->count();
16 16
         Log::debug('Retrieved new Tech Tip count for last '.$numDays.' days.  Count - $tips');
17 17
         return $tips;
18 18
     }
19 19
 
20 20
     public function getTotalTechTipCount()
21 21
     {
22
-        $tipsTotal   = TechTips::all()->count();
22
+        $tipsTotal = TechTips::all()->count();
23 23
         Log::debug('Retrieved total Tech Tip count.  Count - $tips');
24 24
         return $tipsTotal;
25 25
     }
Please login to merge, or discard this patch.
app/Domains/Users/GetUserStats.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
 
23 23
     public function getUserCustomerFavs()
24 24
     {
25
-        $custFavs    = CustomerFavs::where('user_id', $this->userID)
26
-            ->with(array('Customers' => function($query){
25
+        $custFavs = CustomerFavs::where('user_id', $this->userID)
26
+            ->with(array('Customers' => function($query) {
27 27
                 $query->select('cust_id', 'name');
28 28
             }))
29 29
             ->get();
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function getUserTechTipFavs()
36 36
     {
37
-        $tipFavs     = TechTipFavs::where('user_id', $this->userID)
38
-            ->with(array('TechTips' => function($query){
37
+        $tipFavs = TechTipFavs::where('user_id', $this->userID)
38
+            ->with(array('TechTips' => function($query) {
39 39
                 $query->select('tip_id', 'subject');
40 40
             }))
41 41
             ->get();
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
     public function getUserTotalLinks()
56 56
     {
57
-        $totalLinks  = FileLinks::where('user_id', $this->userID)->count();
57
+        $totalLinks = FileLinks::where('user_id', $this->userID)->count();
58 58
 
59 59
         Log::debug('Retrieved count of total File Links for User ID'.$this->userID.'. Data - '.$totalLinks.' found');
60 60
         return $totalLinks;
Please login to merge, or discard this patch.
app/Domains/FilesDomain.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -74,13 +74,13 @@  discard block
 block discarded – undo
74 74
     protected function isFileDup($fileName)
75 75
     {
76 76
         //  Determine if the filename already exists
77
-        if (Storage::exists($this->path . DIRECTORY_SEPARATOR . $fileName))
77
+        if(Storage::exists($this->path.DIRECTORY_SEPARATOR.$fileName))
78 78
         {
79 79
             $fileParts = pathinfo($fileName);
80
-            $extension = isset($fileParts['extension']) ? ('.' . $fileParts['extension']) : '';
80
+            $extension = isset($fileParts['extension']) ? ('.'.$fileParts['extension']) : '';
81 81
 
82 82
             //  Look to see if a number is already appended to a file.  (example - file(1).pdf)
83
-            if (preg_match('/(.*?)(\d+)$/', $fileParts['filename'], $match))
83
+            if(preg_match('/(.*?)(\d+)$/', $fileParts['filename'], $match))
84 84
             {
85 85
                 // Has a number, increment it
86 86
                 $base = $match[1];
@@ -96,8 +96,8 @@  discard block
 block discarded – undo
96 96
             //  Increase the number until one that is not in use is found
97 97
             do
98 98
             {
99
-                $fileName = $base . '(' . ++$number . ')' . $extension;
100
-            } while (Storage::exists($this->path.DIRECTORY_SEPARATOR.$fileName));
99
+                $fileName = $base.'('.++$number.')'.$extension;
100
+            } while(Storage::exists($this->path.DIRECTORY_SEPARATOR.$fileName));
101 101
         }
102 102
 
103 103
         return $fileName;
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     {
109 109
         $data = Files::find($fileID);
110 110
         //  Move the file to the proper folder
111
-        try{
111
+        try {
112 112
             Log::debug('Attempting to moving file '.$fileID.' to '.$newPath);
113 113
             Storage::move($data->file_link.$data->file_name, $newPath.DIRECTORY_SEPARATOR.$data->file_name);
114 114
         }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,8 @@
 block discarded – undo
108 108
     {
109 109
         $data = Files::find($fileID);
110 110
         //  Move the file to the proper folder
111
-        try{
111
+        try
112
+        {
112 113
             Log::debug('Attempting to moving file '.$fileID.' to '.$newPath);
113 114
             Storage::move($data->file_link.$data->file_name, $newPath.DIRECTORY_SEPARATOR.$data->file_name);
114 115
         }
Please login to merge, or discard this patch.