Skip to content

Commit

Permalink
Fixed some known bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
chaz6chez committed Oct 12, 2021
1 parent 8b227be commit ae1df39
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Structure.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function __construct(array $data = [], string $scene = '')
/**
* @param array $data
* @param string $scene
* @return Structure
* @return static
*/
public static function factory(array $data = [], string $scene = '') : Structure
{
Expand All @@ -74,7 +74,7 @@ public static function factory(array $data = [], string $scene = '') : Structure

/**
* @param int ...$filter
* @return $this
* @return static
*/
public function filter(int ...$filter) : Structure
{
Expand All @@ -84,7 +84,7 @@ public function filter(int ...$filter) : Structure

/**
* @param int ...$transfer
* @return $this
* @return static
*/
public function transfer(int ...$transfer) : Structure
{
Expand All @@ -94,7 +94,7 @@ public function transfer(int ...$transfer) : Structure

/**
* @param string $scene
* @return $this
* @return static
*/
public function scene(string $scene) : Structure
{
Expand Down Expand Up @@ -199,7 +199,7 @@ public function validate(bool $afresh = false) : bool

/**
* @param bool $createRaw
* @return $this
* @return static
*/
public function clean(bool $createRaw = false): Structure
{
Expand Down

0 comments on commit ae1df39

Please sign in to comment.