fix line-ending

This commit is contained in:
Dennis Eichhorn 2021-11-29 20:07:33 +01:00
parent be1cdcf1ec
commit 3c464a1e21
5 changed files with 5 additions and 5 deletions

View File

@ -191,5 +191,5 @@ abstract class DataMapperAbstract
return $value;
}
abstract public function execute(...$options);
abstract public function execute(array ...$options) : mixed;
}

View File

@ -36,7 +36,7 @@ class DeleteMapper extends DataMapperAbstract
return $this;
}
public function execute(...$options) : mixed
public function execute(array ...$options) : mixed
{
switch($this->type) {
case MapperType::DELETE:

View File

@ -78,7 +78,7 @@ class ReadMapper extends DataMapperAbstract
return $this;
}
public function execute(...$options) : mixed
public function execute(array ...$options) : mixed
{
switch($this->type) {
case MapperType::GET:

View File

@ -38,7 +38,7 @@ class UpdateMapper extends DataMapperAbstract
return $this;
}
public function execute(...$options) : mixed
public function execute(array ...$options) : mixed
{
switch($this->type) {
case MapperType::UPDATE:

View File

@ -36,7 +36,7 @@ class WriteMapper extends DataMapperAbstract
return $this;
}
public function execute(...$options) : mixed
public function execute(array ...$options) : mixed
{
switch($this->type) {
case MapperType::CREATE: