Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
achmadhadikurnia authored and github-actions[bot] committed Oct 19, 2023
1 parent 56b76d1 commit 38a6ee1
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/Commands/GetDownloadDokCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostAngkaKreditSaveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostCpnsSaveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostDataUtamaUpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostDiklatSaveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostHukdisSaveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostJabatanSaveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostKursusSaveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostPenghargaanSaveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostSkp2021SaveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostSkp22SaveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostSkpSaveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostUploadDokCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostUploadDokRwCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PostUploadDokSkKpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function handle()

$query = json_decode($this->ask('Copy the json above, fill it and paste it here'), true);

if (!is_array($query)) {
if (! is_array($query)) {
throw new InvalidJsonException;

return self::FAILURE;
Expand Down

0 comments on commit 38a6ee1

Please sign in to comment.