Skip to content

Commit

Permalink
Merge pull request #58 from amranidev/amranidev-patch-1
Browse files Browse the repository at this point in the history
Update tests.yml
  • Loading branch information
amranidev authored Apr 27, 2024
2 parents 59b296e + 1899b64 commit b5aa68f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Tests

on:
workflow_dispatch
push:
branches: [ master ]
pull_request:
Expand Down
4 changes: 2 additions & 2 deletions src/AbstractRecombee.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ abstract class AbstractRecombee
/**
* AbstractRecombee constructor.
*
* @param $database_id
* @param $token
* @param $database_id
* @param $token
* @param string $protocol
* @param int $timeout
* @param array $options
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Commands/AddColumnsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function handle()
{
if (!$this->option('to')) {
$this->error('--to option is required!');
exit();
exit;
}

Laracombee::batch($this->loadColumns($this->argument('columns'))->all())
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Commands/DropColumnsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function handle()
{
if (!$this->option('from')) {
$this->error('--from option is required!');
exit();
exit;
}

Laracombee::batch($this->loadColumns($this->argument('columns'))->all())
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Commands/SeedCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function handle()
})->otherwise(function ($error) {
$this->info('');
$this->error($error);
exit();
exit;
})->wait();

$bar->advance();
Expand Down

0 comments on commit b5aa68f

Please sign in to comment.