Completed
Branch master (2a820b)
by Kyle
04:02
created
src/Validator/Component.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -866,14 +866,14 @@
 block discarded – undo
866 866
         return count($words[0]);
867 867
     }
868 868
 
869
-     /**
870
-      * A helper method to validate a $value via a callable $param.
871
-      * 
872
-      * @param string $value 
873
-      * @param string $param 
874
-      * 
875
-      * @return string
876
-      */
869
+        /**
870
+         * A helper method to validate a $value via a callable $param.
871
+         * 
872
+         * @param string $value 
873
+         * @param string $param 
874
+         * 
875
+         * @return string
876
+         */
877 877
     private function remote($value, $param)
878 878
     {
879 879
         $value = (isset($this->rules[$param]) && is_callable($this->rules[$param])) ? $this->rules[$param]($value) : false;
Please login to merge, or discard this patch.
src/Bootstrap/Bootstrap3.php 1 patch
Indentation   -2 removed lines patch added patch discarded remove patch
@@ -116,8 +116,6 @@
 block discarded – undo
116 116
      * - '**list-inline**' - For an unordered list to be displayed horizontally.
117 117
      * - '**list-unstyled**' - For an unordered list to be unbulleted.
118 118
      * - '**dl-horizontal**' - For a definition to be displayed beside it's title rather than below.
119
-     
120
-     
121 119
      * @param array  $list  For Ordered and Unordered lists this is an ``array($li, $li, ...)``, and to nest another list just make the ``$li`` another array.
122 120
      * 
123 121
      * For Definition Lists this is an ``array($title => $definition, ...)``. If you have multiple ``$definition``'s, then just make ``$title`` an array of them.
Please login to merge, or discard this patch.