1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-16 02:04:09 +02:00
This commit is contained in:
Graham Campbell
2014-09-27 17:23:34 +01:00
parent 26a0fed52e
commit 722f30d132
2 changed files with 6 additions and 7 deletions

View File

@@ -402,7 +402,7 @@ abstract class CommonTest extends PHPUnit_Framework_TestCase
public function containsAnyProvider()
{
// One needle
$singleNeedle = array_map(function($array) {
$singleNeedle = array_map(function ($array) {
$array[2] = array($array[2]);
return $array;
}, $this->containsProvider());
@@ -440,7 +440,7 @@ abstract class CommonTest extends PHPUnit_Framework_TestCase
public function containsAllProvider()
{
// One needle
$singleNeedle = array_map(function($array) {
$singleNeedle = array_map(function ($array) {
$array[2] = array($array[2]);
return $array;
}, $this->containsProvider());