@@ -34,7 +34,7 @@ public function schema(string $schemaName) : static
3434
3535 protected function renderSchema () : ?string
3636 {
37- if ( ! isset ($ this ->sql ['schema ' ])) {
37+ if (! isset ($ this ->sql ['schema ' ])) {
3838 return null ;
3939 }
4040 $ schema = $ this ->sql ['schema ' ];
@@ -57,7 +57,7 @@ public function charset(string $charset) : static
5757
5858 protected function renderCharset () : ?string
5959 {
60- if ( ! isset ($ this ->sql ['charset ' ])) {
60+ if (! isset ($ this ->sql ['charset ' ])) {
6161 return null ;
6262 }
6363 $ charset = $ this ->database ->quote ($ this ->sql ['charset ' ]);
@@ -77,7 +77,7 @@ public function collate(string $collation) : static
7777
7878 protected function renderCollate () : ?string
7979 {
80- if ( ! isset ($ this ->sql ['collation ' ])) {
80+ if (! isset ($ this ->sql ['collation ' ])) {
8181 return null ;
8282 }
8383 $ collation = $ this ->database ->quote ($ this ->sql ['collation ' ]);
@@ -95,7 +95,7 @@ public function upgrade() : static
9595
9696 protected function renderUpgrade () : ?string
9797 {
98- if ( ! isset ($ this ->sql ['upgrade ' ])) {
98+ if (! isset ($ this ->sql ['upgrade ' ])) {
9999 return null ;
100100 }
101101 if (isset ($ this ->sql ['charset ' ]) || isset ($ this ->sql ['collation ' ])) {
@@ -108,9 +108,9 @@ protected function renderUpgrade() : ?string
108108
109109 protected function checkSpecifications () : void
110110 {
111- if ( ! isset ($ this ->sql ['charset ' ])
112- && ! isset ($ this ->sql ['collation ' ])
113- && ! isset ($ this ->sql ['upgrade ' ])
111+ if (! isset ($ this ->sql ['charset ' ])
112+ && !isset ($ this ->sql ['collation ' ])
113+ && !isset ($ this ->sql ['upgrade ' ])
114114 ) {
115115 throw new LogicException (
116116 'ALTER SCHEMA must have a specification '
0 commit comments