Passed
Push — develop ( 652c07...3982d3 )
by Nikolay
05:18
created
src/Common/Models/DialplanApplications.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     /**
59 59
      * @Column(type="string", nullable=true) {'plaintext'|'php'}
60 60
      */
61
-    public ?string $type='plaintext';
61
+    public ?string $type = 'plaintext';
62 62
 
63 63
     /**
64 64
      * @Column(type="string", nullable=true)
Please login to merge, or discard this patch.
src/Common/Models/Codecs.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,17 +33,17 @@
 block discarded – undo
33 33
      * Audio or Video codec
34 34
      * @Column(type="string", nullable=true)
35 35
      */
36
-    public ?string $type='audio';
36
+    public ?string $type = 'audio';
37 37
 
38 38
     /**
39 39
      * @Column(type="integer", nullable=true, default="1")
40 40
      */
41
-    public ?string $priority='1';
41
+    public ?string $priority = '1';
42 42
 
43 43
     /**
44 44
      * @Column(type="integer", nullable=true, default="0")
45 45
      */
46
-    public ?string $disabled='0';
46
+    public ?string $disabled = '0';
47 47
 
48 48
     /**
49 49
      * @Column(type="string", nullable=true)
Please login to merge, or discard this patch.