Completed
Push — master ( c02965...f19773 )
by Aleksandar
100:21 queued 75:50
created
public/admin_assets/vendors/bootstrap-wysiwyg/examples/php/upload.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-	header ( 'Content-type: text/plain');
4
-	echo "
3
+    header ( 'Content-type: text/plain');
4
+    echo "
5 5
 		Now see here, you will see the output of the param most 
6 6
 		interesting to PHP. \$_POST.
7 7
 		
@@ -13,4 +13,4 @@  discard block
 block discarded – undo
13 13
 		
14 14
 		print_r(\$_POST);
15 15
 	";	
16
-	print_r($_POST);
17 16
\ No newline at end of file
17
+    print_r($_POST);
18 18
\ No newline at end of file
Please login to merge, or discard this patch.
vendors/jQuery-Smart-Wizard/more_examples/smartwizard2-validation.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -155,9 +155,9 @@
 block discarded – undo
155 155
 <table align="center" border="0" cellpadding="0" cellspacing="0">
156 156
 <tr><td>
157 157
 <?
158
-   if(isset($_REQUEST['issubmit'])){
159
-      echo "<strong>form is sumbitted</strong>";
160
-   }
158
+    if(isset($_REQUEST['issubmit'])){
159
+        echo "<strong>form is sumbitted</strong>";
160
+    }
161 161
 
162 162
 ?>
163 163
  
Please login to merge, or discard this patch.
admin_assets/vendors/jQuery-Smart-Wizard/more_examples/services/service.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -1,26 +1,26 @@  discard block
 block discarded – undo
1 1
 <?
2
-  $action = $_REQUEST["action"];
3
-  switch($action){
4
-      case "1":
2
+    $action = $_REQUEST["action"];
3
+    switch($action){
4
+        case "1":
5 5
           getContent();
6 6
         break;                     
7
-      default:
7
+        default:
8 8
         break;
9
-  }
9
+    }
10 10
 
11
- function getContent(){
12
-   //sleep(1); 
13
-   $step_number = $_REQUEST["step_number"]; 
14
-   $html = '<h2 class="StepTitle">Step '.$step_number.' Content</h2>';
15
-   if($step_number == 1){
16
-      $html .='<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, 
11
+    function getContent(){
12
+    //sleep(1); 
13
+    $step_number = $_REQUEST["step_number"]; 
14
+    $html = '<h2 class="StepTitle">Step '.$step_number.' Content</h2>';
15
+    if($step_number == 1){
16
+        $html .='<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, 
17 17
             sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, 
18 18
             quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 
19 19
             Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. 
20 20
             Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
21 21
             </p>';
22
-   }elseif($step_number == 2){
23
-      $html .='<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, 
22
+    }elseif($step_number == 2){
23
+        $html .='<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, 
24 24
             sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, 
25 25
             quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 
26 26
             Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. 
@@ -32,8 +32,8 @@  discard block
 block discarded – undo
32 32
             Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. 
33 33
             Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
34 34
             </p>';
35
-   }elseif($step_number == 3){
36
-      $html .='<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, 
35
+    }elseif($step_number == 3){
36
+        $html .='<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, 
37 37
             sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, 
38 38
             quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 
39 39
             Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. 
@@ -51,15 +51,15 @@  discard block
 block discarded – undo
51 51
             Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. 
52 52
             Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
53 53
             </p>';
54
-   }else{
55
-      $html .='<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, 
54
+    }else{
55
+        $html .='<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, 
56 56
             sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, 
57 57
             quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 
58 58
             Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. 
59 59
             Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
60 60
             </p>';
61
-   }
62
-   echo $html;
63
- }
61
+    }
62
+    echo $html;
63
+    }
64 64
 
65 65
 ?>
66 66
\ No newline at end of file
Please login to merge, or discard this patch.
packages/Article/src/Service/EventService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -63,6 +63,9 @@
 block discarded – undo
63 63
         return $this->getPagination($select, $page, $limit);
64 64
     }
65 65
 
66
+    /**
67
+     * @param integer $limit
68
+     */
66 69
     public function fetchLatest($limit)
67 70
     {
68 71
         return $this->articleEventsMapper->getLatest($limit);
Please login to merge, or discard this patch.
packages/Article/src/Service/PostService.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -203,6 +203,9 @@
 block discarded – undo
203 203
         return $this->articleMapper->getCategories($articleId);
204 204
     }
205 205
 
206
+    /**
207
+     * @param integer $limit
208
+     */
206 209
     public function getLatestWeb($limit)
207 210
     {
208 211
         return $this->articlePostsMapper->getLatest($limit);
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -23,49 +23,49 @@
 block discarded – undo
23 23
     /**
24 24
 * 
25 25
      *
26
- * @var ArticleMapper 
26
+     * @var ArticleMapper 
27 27
 */
28 28
     private $articleMapper;
29 29
 
30 30
     /**
31 31
 * 
32 32
      *
33
- * @var ArticlePostsMapper 
33
+     * @var ArticlePostsMapper 
34 34
 */
35 35
     private $articlePostsMapper;
36 36
 
37 37
     /**
38 38
 * 
39 39
      *
40
- * @var ArticleFilter 
40
+     * @var ArticleFilter 
41 41
 */
42 42
     private $articleFilter;
43 43
 
44 44
     /**
45 45
 * 
46 46
      *
47
- * @var PostFilter 
47
+     * @var PostFilter 
48 48
 */
49 49
     private $postFilter;
50 50
 
51 51
     /**
52 52
 * 
53 53
      *
54
- * @var CategoryMapper 
54
+     * @var CategoryMapper 
55 55
 */
56 56
     private $categoryMapper;
57 57
 
58 58
     /**
59 59
 * 
60 60
      *
61
- * @var Upload 
61
+     * @var Upload 
62 62
 */
63 63
     private $upload;
64 64
 
65 65
     /**
66 66
 * 
67 67
      *
68
- * @var AdminUsersMapper 
68
+     * @var AdminUsersMapper 
69 69
 */
70 70
     private $adminUsersMapper;
71 71
 
Please login to merge, or discard this patch.
packages/Article/src/Service/VideoService.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -91,6 +91,9 @@
 block discarded – undo
91 91
         return $this->getPagination($select, $page, $limit);
92 92
     }
93 93
 
94
+    /**
95
+     * @param integer $limit
96
+     */
94 97
     public function fetchLatest($limit)
95 98
     {
96 99
         return $this->articleVideosMapper->getLatest($limit);
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -22,49 +22,49 @@
 block discarded – undo
22 22
     /**
23 23
 * 
24 24
      *
25
- * @var ArticleMapper 
25
+     * @var ArticleMapper 
26 26
 */
27 27
     private $articleMapper;
28 28
 
29 29
     /**
30 30
 * 
31 31
      *
32
- * @var ArticleVideosMapper 
32
+     * @var ArticleVideosMapper 
33 33
 */
34 34
     private $articleVideosMapper;
35 35
 
36 36
     /**
37 37
 * 
38 38
      *
39
- * @var ArticleFilter 
39
+     * @var ArticleFilter 
40 40
 */
41 41
     private $articleFilter;
42 42
 
43 43
     /**
44 44
 * 
45 45
      *
46
- * @var VideoFilter 
46
+     * @var VideoFilter 
47 47
 */
48 48
     private $videosFilter;
49 49
 
50 50
     /**
51 51
 * 
52 52
      *
53
- * @var CategoryMapper 
53
+     * @var CategoryMapper 
54 54
 */
55 55
     private $categoryMapper;
56 56
 
57 57
     /**
58 58
 * 
59 59
      *
60
- * @var Upload 
60
+     * @var Upload 
61 61
 */
62 62
     private $upload;
63 63
 
64 64
     /**
65 65
 * 
66 66
      *
67
- * @var AdminUsersMapper 
67
+     * @var AdminUsersMapper 
68 68
 */
69 69
     private $adminUsersMapper;
70 70
 
Please login to merge, or discard this patch.
packages/Category/src/Mapper/CategoryMapper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -44,6 +44,9 @@
 block discarded – undo
44 44
         return $select;
45 45
     }
46 46
 
47
+    /**
48
+     * @param integer $limit
49
+     */
47 50
     public function getCategoryPostsSelect($categoryId = null, $limit = null)
48 51
     {
49 52
         $select = $this->getSql()->select()
Please login to merge, or discard this patch.
packages/Admin/src/View/Helper/AdminUserHelper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@
 block discarded – undo
22 22
         return $this;
23 23
     }
24 24
 
25
+    /**
26
+     * @return boolean
27
+     */
25 28
     public function current()
26 29
     {
27 30
         return $this->session->getStorage()->user;
Please login to merge, or discard this patch.
packages/Article/src/Service/ArticleServiceInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
     /**
13 13
      * Fetches a list of ArticleEntity models.
14 14
      *
15
-     * @param  array $params
16 15
      * @return ArrayObject
17 16
      */
18 17
     public function fetchAllArticles($page, $limit);
Please login to merge, or discard this patch.