Rapsys Git
/
packbundle
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96fd400
)
Reorder constructor arguments
author
Raphaël Gertz
<git@rapsys.eu>
Mon, 4 Mar 2024 15:18:41 +0000
(16:18 +0100)
committer
Raphaël Gertz
<git@rapsys.eu>
Mon, 4 Mar 2024 15:18:41 +0000
(16:18 +0100)
Command/RangeCommand.php
patch
|
blob
|
history
diff --git
a/Command/RangeCommand.php
b/Command/RangeCommand.php
index e18fafac38aa392750fb0960626d3473c9b0b226..f72049321816a8c637fb6b7de641b6f332aedac0 100644
(file)
--- a/
Command/RangeCommand.php
+++ b/
Command/RangeCommand.php
@@
-40,7
+40,7
@@
class RangeCommand extends Command {
/**
* {@inheritdoc}
*/
- public function __construct(protected
?string $name = null, protected string $file = '.env.local'
) {
+ public function __construct(protected
string $file = '.env.local', protected ?string $name = null
) {
//Call parent constructor
parent::__construct($this->name);