package and depencies

This commit is contained in:
RafficMohammed
2023-01-08 02:57:24 +05:30
parent d5332eb421
commit 1d54b8bc7f
4309 changed files with 193331 additions and 172289 deletions

View File

@@ -52,7 +52,7 @@ class Shadow implements IComparable
/**
* Shadow alignment.
*
* @var int
* @var string
*/
private $alignment;
@@ -98,13 +98,13 @@ class Shadow implements IComparable
/**
* Set Visible.
*
* @param bool $pValue
* @param bool $visible
*
* @return $this
*/
public function setVisible($pValue)
public function setVisible($visible)
{
$this->visible = $pValue;
$this->visible = $visible;
return $this;
}
@@ -122,13 +122,13 @@ class Shadow implements IComparable
/**
* Set Blur radius.
*
* @param int $pValue
* @param int $blurRadius
*
* @return $this
*/
public function setBlurRadius($pValue)
public function setBlurRadius($blurRadius)
{
$this->blurRadius = $pValue;
$this->blurRadius = $blurRadius;
return $this;
}
@@ -146,13 +146,13 @@ class Shadow implements IComparable
/**
* Set Shadow distance.
*
* @param int $pValue
* @param int $distance
*
* @return $this
*/
public function setDistance($pValue)
public function setDistance($distance)
{
$this->distance = $pValue;
$this->distance = $distance;
return $this;
}
@@ -170,13 +170,13 @@ class Shadow implements IComparable
/**
* Set Shadow direction (in degrees).
*
* @param int $pValue
* @param int $direction
*
* @return $this
*/
public function setDirection($pValue)
public function setDirection($direction)
{
$this->direction = $pValue;
$this->direction = $direction;
return $this;
}
@@ -184,7 +184,7 @@ class Shadow implements IComparable
/**
* Get Shadow alignment.
*
* @return int
* @return string
*/
public function getAlignment()
{
@@ -194,13 +194,13 @@ class Shadow implements IComparable
/**
* Set Shadow alignment.
*
* @param int $pValue
* @param string $alignment
*
* @return $this
*/
public function setAlignment($pValue)
public function setAlignment($alignment)
{
$this->alignment = $pValue;
$this->alignment = $alignment;
return $this;
}
@@ -218,13 +218,11 @@ class Shadow implements IComparable
/**
* Set Color.
*
* @param Color $pValue
*
* @return $this
*/
public function setColor(?Color $pValue = null)
public function setColor(?Color $color = null)
{
$this->color = $pValue;
$this->color = $color;
return $this;
}
@@ -242,13 +240,13 @@ class Shadow implements IComparable
/**
* Set Alpha.
*
* @param int $pValue
* @param int $alpha
*
* @return $this
*/
public function setAlpha($pValue)
public function setAlpha($alpha)
{
$this->alpha = $pValue;
$this->alpha = $alpha;
return $this;
}