Skip to content

Commit

Permalink
chore: release v7.0.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
regnerisch committed Aug 3, 2023
1 parent 416bf71 commit 84b4da2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "akrillia/laravel-beyond",
"type": "library",
"license": "ISC",
"version": "7.0.0-beta.1",
"version": "7.0.0-beta.2",
"autoload": {
"psr-4": {
"AkrilliA\\LaravelBeyond\\": "src/"
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/MakeDataTransferObjectCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class MakeDataTransferObjectCommand extends DomainCommand
protected $signature = 'beyond:make:data {name} {--force}';

protected $aliases = [
'beyond:make:dto'
'beyond:make:dto',
];

protected $description = 'Make a new data transfer object';
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/MakeJobCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ protected function getStub(): string
{
return match (true) {
$this->option('sync') => 'job.sync.stub',
default => 'job.stub'
default => 'job.stub'
};
}

Expand Down

0 comments on commit 84b4da2

Please sign in to comment.