Skip to content

Commit c2dade3

Browse files
author
Mauro Cassani
committed
Fixing code (Sensiolabs)
1 parent d0a7d1f commit c2dade3

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

src/Command/BaseCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ protected function convertParametersArray(array $parameters = [])
8484
foreach ($param as $p) {
8585
$p = explode('=', $p);
8686
if (count($p)) {
87-
$array[@$p[0]] = @$p[1];
87+
$array[$p[0]] = $p[1];
8888
}
8989
}
9090
}

src/InMemoryList/Domain/Helper/ListElementConsistencyChecker.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static function isConsistent($listElement, array $list = [])
3737
if (is_array($listElement) || is_object($listElement)) {
3838
if (count(array_diff_key(
3939
(array) $listElement,
40-
(array) self::_getBodyOfFirstElementOfList($list)
40+
(array) self::_GetBodyOfFirstElementOfList($list)
4141
))) {
4242
return false;
4343
}
@@ -51,10 +51,10 @@ public static function isConsistent($listElement, array $list = [])
5151
*
5252
* @return mixed
5353
*/
54-
private static function _getBodyOfFirstElementOfList($list)
54+
private static function _GetBodyOfFirstElementOfList($list)
5555
{
56-
$firstElementKey = @array_keys($list)[0];
57-
$firstElement = self::_getBodyOfListElement(@$list[$firstElementKey]);
56+
$firstElementKey = array_keys($list)[0];
57+
$firstElement = self::_getBodyOfListElement($list[$firstElementKey]);
5858

5959
return $firstElement;
6060
}
@@ -70,7 +70,7 @@ private static function _getBodyOfListElement($listElement)
7070
}
7171

7272
if (is_string($listElement)) {
73-
return (@unserialize($listElement) !== false) ? unserialize($listElement) : $listElement;
73+
return (false !== @unserialize($listElement)) ? unserialize($listElement) : $listElement;
7474
}
7575

7676
return $listElement;

src/InMemoryList/Infrastructure/Drivers/ApcuDriver.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function check()
5050
*/
5151
public function clear()
5252
{
53-
return @apcu_clear_cache();
53+
return apcu_clear_cache();
5454
}
5555

5656
/**

src/InMemoryList/Infrastructure/Persistance/AbstractRepository.php

+9-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@ public function delete($listUuid)
3636
*/
3737
public function existsElement($listUuid, $elementUuid)
3838
{
39-
return @$this->findListByUuid($listUuid)[$elementUuid];
39+
if(isset($this->findListByUuid($listUuid)[$elementUuid])){
40+
return $this->findListByUuid($listUuid)[$elementUuid];
41+
}
42+
43+
return false;
4044
}
4145

4246
/**
@@ -95,9 +99,11 @@ public function getCounter($listUuid)
9599
*/
96100
protected function _existsListInIndex($listUuid)
97101
{
98-
$index = @$this->getIndex($listUuid);
102+
if(@$this->getIndex($listUuid)){
103+
return true;
104+
}
99105

100-
return isset($index);
106+
return false;
101107
}
102108

103109
/**

0 commit comments

Comments
 (0)