Skip to content

Commit

Permalink
change helpers names
Browse files Browse the repository at this point in the history
  • Loading branch information
MoamenEltouny committed May 13, 2023
1 parent 73af124 commit b4adab4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/HelpersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,27 +37,27 @@ public function testDotFunction()
}

/**
* Check is_numeric_array
* Check array_is_numeric
*/
public function testIsNumericArrayFunction()
{
$this->assertTrue(is_numeric_array($this->dot->all()));
$this->assertTrue(array_is_numeric($this->dot->all()));
}

/**
* Check is_null_array
* Check array_is_null
*/
public function testIsNullArrayFunction()
{
$this->dot->clear();
$this->assertTrue(is_null_array($this->dot->all()));
$this->assertTrue(array_is_null($this->dot->all()));
}

/**
* Check is_null_array
* Check array_is_null
*/
public function testIsMultiDimensionalArrayFunction()
{
$this->assertTrue(is_multidimensional_array($this->dot->all()));
$this->assertTrue(array_is_multidimensional($this->dot->all()));
}
}

0 comments on commit b4adab4

Please sign in to comment.