Skip to content

Commit

Permalink
Improved coding style in stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Nov 19, 2024
1 parent a4014fe commit 07b2869
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion stubs/sequence.stub
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Aimeos\Upscheme\Task;
use Aimeos\Upscheme\Schema\Sequence;


return new class( $this ) extends Base
return new class($this) extends Base
{
public function up()
{
Expand Down
2 changes: 1 addition & 1 deletion stubs/table.stub
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Aimeos\Upscheme\Task;
use Aimeos\Upscheme\Schema\Table;


return new class( $this ) extends Base
return new class($this) extends Base
{
public function after(): array
{
Expand Down
2 changes: 1 addition & 1 deletion stubs/view.stub
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Aimeos\Upscheme\Task;


return new class( $this ) extends Base
return new class($this) extends Base
{
public function up()
{
Expand Down

0 comments on commit 07b2869

Please sign in to comment.