Completed
Push — develop ( 59e403...53b1d2 )
by Paul
03:03
created
src/Model/PropertyInterface/VisibilityInterface.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,17 +21,17 @@
 block discarded – undo
21 21
     /**
22 22
      * @var int PUBLIC A public visibility.
23 23
      */
24
-    const PUBLIC             = 1;
24
+    const PUBLIC = 1;
25 25
 
26 26
     /**
27 27
      * @var int PUBLIC A protected visibility.
28 28
      */
29
-    const PROTECTED          = 2;
29
+    const PROTECTED = 2;
30 30
 
31 31
     /**
32 32
      * @var int PUBLIC A private visibility.
33 33
      */
34
-    const PRIVATE            = 3;
34
+    const PRIVATE = 3;
35 35
 
36 36
     /**
37 37
      * @param int|null $visibility The new visibility to set.
Please login to merge, or discard this patch.