diff --git a/src/Traits/Configuration/LoadingPlaceholderConfiguration.php b/src/Traits/Configuration/LoadingPlaceholderConfiguration.php index 7cc96cbe7..a5547bf68 100644 --- a/src/Traits/Configuration/LoadingPlaceholderConfiguration.php +++ b/src/Traits/Configuration/LoadingPlaceholderConfiguration.php @@ -31,5 +31,4 @@ public function setLoadingPlaceholderContent(string $content): self return $this; } - } diff --git a/src/Traits/Styling/Configuration/LoadingPlaceholderStylingConfiguration.php b/src/Traits/Styling/Configuration/LoadingPlaceholderStylingConfiguration.php index 9582a5adb..c07a98f57 100644 --- a/src/Traits/Styling/Configuration/LoadingPlaceholderStylingConfiguration.php +++ b/src/Traits/Styling/Configuration/LoadingPlaceholderStylingConfiguration.php @@ -1,35 +1,34 @@ -loadingPlaceHolderAttributes = $attributes; - - return $this; - } - - public function setLoadingPlaceHolderIconAttributes(array $attributes): self - { - $this->loadingPlaceHolderIconAttributes = $attributes; - - return $this; - } - - public function setLoadingPlaceHolderWrapperAttributes(array $attributes): self - { - $this->loadingPlaceHolderWrapperAttributes = $attributes; - - return $this; - } - - public function setLoadingPlaceholderBlade(string $customBlade): self - { - $this->loadingPlaceholderBlade = $customBlade; - - return $this; - } - -} \ No newline at end of file +loadingPlaceHolderAttributes = $attributes; + + return $this; + } + + public function setLoadingPlaceHolderIconAttributes(array $attributes): self + { + $this->loadingPlaceHolderIconAttributes = $attributes; + + return $this; + } + + public function setLoadingPlaceHolderWrapperAttributes(array $attributes): self + { + $this->loadingPlaceHolderWrapperAttributes = $attributes; + + return $this; + } + + public function setLoadingPlaceholderBlade(string $customBlade): self + { + $this->loadingPlaceholderBlade = $customBlade; + + return $this; + } +} diff --git a/src/Traits/Styling/HasLoadingPlaceholderStyling.php b/src/Traits/Styling/HasLoadingPlaceholderStyling.php index e399476dc..2d2dda7dc 100644 --- a/src/Traits/Styling/HasLoadingPlaceholderStyling.php +++ b/src/Traits/Styling/HasLoadingPlaceholderStyling.php @@ -1,21 +1,20 @@ - '', 'default' => true]; - -} \ No newline at end of file + '', 'default' => true]; +} diff --git a/src/Traits/Styling/Helpers/LoadingPlaceholderStylingHelpers.php b/src/Traits/Styling/Helpers/LoadingPlaceholderStylingHelpers.php index 552e37b21..d65e785bb 100644 --- a/src/Traits/Styling/Helpers/LoadingPlaceholderStylingHelpers.php +++ b/src/Traits/Styling/Helpers/LoadingPlaceholderStylingHelpers.php @@ -1,28 +1,28 @@ -loadingPlaceHolderAttributes) ? $this->loadingPlaceHolderAttributes : ['default' => true]; - } - - public function getLoadingPlaceHolderIconAttributes(): array - { - return count($this->loadingPlaceHolderIconAttributes) ? $this->loadingPlaceHolderIconAttributes : ['default' => true]; - } - - public function getLoadingPlaceHolderWrapperAttributes(): array - { - return count($this->loadingPlaceHolderWrapperAttributes) ? $this->loadingPlaceHolderWrapperAttributes : ['default' => true]; - } - - public function getLoadingPlaceHolderCellAttributes(): array - { - return count($this->loadingPlaceHolderCellAttributes) ? $this->loadingPlaceHolderCellAttributes : ['default' => true]; - } -} \ No newline at end of file +loadingPlaceHolderAttributes) ? $this->loadingPlaceHolderAttributes : ['default' => true]; + } + + public function getLoadingPlaceHolderIconAttributes(): array + { + return count($this->loadingPlaceHolderIconAttributes) ? $this->loadingPlaceHolderIconAttributes : ['default' => true]; + } + + public function getLoadingPlaceHolderWrapperAttributes(): array + { + return count($this->loadingPlaceHolderWrapperAttributes) ? $this->loadingPlaceHolderWrapperAttributes : ['default' => true]; + } + + public function getLoadingPlaceHolderCellAttributes(): array + { + return count($this->loadingPlaceHolderCellAttributes) ? $this->loadingPlaceHolderCellAttributes : ['default' => true]; + } +} diff --git a/src/Traits/WithLoadingPlaceholder.php b/src/Traits/WithLoadingPlaceholder.php index c9c01faac..130b6d51b 100644 --- a/src/Traits/WithLoadingPlaceholder.php +++ b/src/Traits/WithLoadingPlaceholder.php @@ -17,6 +17,4 @@ trait WithLoadingPlaceholder protected string $loadingPlaceholderContent = 'Loading'; protected ?string $loadingPlaceholderBlade = null; - - }