Completed
Branch master (3814c8)
by Vladimir
02:19
created
docs/sami-config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
  * Include this section if you want sami to document
33 33
  * private and protected functions/properties
34 34
  */
35
-$sami['filter'] = function () {
35
+$sami['filter'] = function() {
36 36
     return new ApiFilter();
37 37
 };
38 38
 
Please login to merge, or discard this patch.
docs/ApiFilter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,15 +9,15 @@
 block discarded – undo
9 9
 
10 10
 class ApiFilter implements FilterInterface
11 11
 {
12
-    public function acceptClass (ClassReflection $class)
12
+    public function acceptClass(ClassReflection $class)
13 13
     {
14 14
         return true;
15 15
     }
16
-    public function acceptMethod (MethodReflection $method)
16
+    public function acceptMethod(MethodReflection $method)
17 17
     {
18 18
         return ($method->isPublic() && empty($method->getTags('internal')));
19 19
     }
20
-    public function acceptProperty (PropertyReflection $property)
20
+    public function acceptProperty(PropertyReflection $property)
21 21
     {
22 22
         return ($property->isPublic() && empty($property->getTags('internal')));
23 23
     }
Please login to merge, or discard this patch.