update PHP Coding Standards Fixer

update PHP Coding Standards Fixer
This commit is contained in:
KHOUBZA Younes
2021-05-09 13:05:54 +00:00
parent 64bac380d0
commit 0ad24a7655
181 changed files with 771 additions and 13286 deletions
+7 -7
View File
@@ -20,7 +20,6 @@ final class NotyBuilder extends NotificationBuilder
/**
* @param string $message
* @param array $options
*
* @return NotyBuilder
*/
@@ -30,8 +29,8 @@ final class NotyBuilder extends NotificationBuilder
}
/**
* top, topLeft, topCenter, topRight, center, centerLeft, centerRight, bottom, bottomLeft, bottomCenter,
* bottomRight - ClassName generator uses this value → noty_layout__${layout}
* top, topLeft, topCenter, topRight, center, centerLeft, centerRight, bottom, bottomLeft, bottomCenter, bottomRight
* - ClassName generator uses this value → noty_layout__${layout}
*
* @param string $layout
*
@@ -111,7 +110,7 @@ final class NotyBuilder extends NotificationBuilder
*/
public function animation($animation, $effect)
{
$this->option('animation.'.$animation, $effect);
$this->option('animation.' . $animation, $effect);
return $this;
}
@@ -124,7 +123,7 @@ final class NotyBuilder extends NotificationBuilder
*/
public function sounds($option, $value)
{
$this->option('sounds.'.$option, $value);
$this->option('sounds.' . $option, $value);
return $this;
}
@@ -137,7 +136,7 @@ final class NotyBuilder extends NotificationBuilder
*/
public function docTitle($option, $docTitle)
{
$this->option('docTitle'.$option, $docTitle);
$this->option('docTitle' . $option, $docTitle);
return $this;
}
@@ -195,7 +194,8 @@ final class NotyBuilder extends NotificationBuilder
}
/**
* If true closes all visible notifications and shows itself. If string(queueName) closes all visible notification on this queue and shows itself.
* If true closes all visible notifications and shows itself. If string(queueName) closes all visible notification
* on this queue and shows itself.
*
* @param string|bool $killer
*