This check looks for method names that are not written in camelCase.
In camelCase names are written without any punctuation, the start of each new
word being marked by a capital letter. Thus the name
database connection seeker becomes databaseConnectionSeeker.
Loading history...
8
{
9
15
$merged = $array1;
10
11
15
foreach ($array2 as $key => &$value)
12
{
13
15
$valueMerged = false;
14
15
15
foreach ($merged as $mergedKey => &$item)
16
{
17
15
if (is_array($item) && array_key_exists($keyField, $item) && $item[$keyField] == $value[$keyField])
This check looks for method names that are not written in camelCase.
In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection seeker becomes
databaseConnectionSeeker.