Code cleanup

This commit is contained in:
James Cole
2018-04-28 06:23:13 +02:00
parent 6f0e1c79ac
commit 13b78bdc20
218 changed files with 621 additions and 681 deletions

View File

@@ -159,10 +159,10 @@ class BelongsUser implements Rule
private function parseAttribute(string $attribute): string
{
$parts = explode('.', $attribute);
if (count($parts) === 1) {
if (\count($parts) === 1) {
return $attribute;
}
if (count($parts) === 3) {
if (\count($parts) === 3) {
return $parts[2];
}

View File

@@ -64,7 +64,7 @@ class ValidTransactions implements Rule
public function passes($attribute, $value)
{
Log::debug('In ValidTransactions::passes');
if (!is_array($value)) {
if (!\is_array($value)) {
return true;
}
$userId = auth()->user()->id;