Completed
Pull Request — master (#9)
by Dawid
02:51
created
Category
src/Annotation/Server.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      *
22 22
      * @var string
23 23
      */
24
-    public $url = 'http://{host}:{port}/';
24
+    public $url='http://{host}:{port}/';
25 25
 
26 26
     /**
27 27
      * An optional string describing the host designated by the URL.
Please login to merge, or discard this patch.
src/Annotation/Parameter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,13 +38,13 @@
 block discarded – undo
38 38
      * and its value MUST be true. Otherwise, the property MAY be included and its default value is false.
39 39
      * @var bool
40 40
      */
41
-    public $required = true;
41
+    public $required=true;
42 42
 
43 43
     /**
44 44
      * Specifies that a parameter is deprecated and SHOULD be transitioned out of usage.
45 45
      * @var bool
46 46
      */
47
-    public $deprecated = false;
47
+    public $deprecated=false;
48 48
 
49 49
     /**
50 50
      * The location of the parameter. Possible values are "query", "header", "path" or "cookie".
Please login to merge, or discard this patch.