Skip to content

Commit

Permalink
Urgent Hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
aneeskhan47 committed Aug 15, 2023
1 parent c0686e0 commit 9214e50
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Concerns/HasOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function url(string $url): static
*
* @see https://developers.cloudflare.com/images/image-resizing/url-format/#anim
*/
private function anim(bool $anim): static
public function anim(bool $anim): static
{
$this->options['anim'] = $anim;

Expand All @@ -49,7 +49,7 @@ private function anim(bool $anim): static
*
* @see https://developers.cloudflare.com/images/image-resizing/url-format/#background
*/
private function background(string $background): static
public function background(string $background): static
{
$this->options['background'] = $background;

Expand All @@ -63,7 +63,7 @@ private function background(string $background): static
*
* @see https://developers.cloudflare.com/images/image-resizing/url-format/#blur
*/
private function blur(int $blur): static
public function blur(int $blur): static
{
$this->options['blur'] = $blur;

Expand All @@ -75,7 +75,7 @@ private function blur(int $blur): static
*
* @param string $brightness The brightness value of 1.0 equals no change, a value of 0.5 equals half brightness, and a value of 2.0 equals twice as bright. 0 is ignored.
*/
private function brightness(string $brightness): static
public function brightness(string $brightness): static
{
$this->options['brightness'] = $brightness;

Expand All @@ -85,7 +85,7 @@ private function brightness(string $brightness): static
/**
* Set the image format.
*/
private function format(string $format): static
public function format(string $format): static
{
$this->options['format'] = $format;

Expand Down

0 comments on commit 9214e50

Please sign in to comment.