src/Repositories/ConsultationUserRepository.php
syntax error, unexpected '=>' (T_DOUBLE_ARROW), expecting ',' or ')'
Open
Open
$query->whereHas('userTerms', fn ($query) => $query->where('executed_at', '=', $date));
- Exclude checks
Avoid excessively long variable names like $consultationUserPivot. Keep variable name length under 20. Open
Open
public function updateModel(ConsultationUserPivot $consultationUserPivot, array $data): ConsultationUserPivot
- Read upRead up
- Exclude checks
LongVariable
Since: 0.2
Detects when a field, formal or local variable is declared with a long name.
Example
class Something {
protected $reallyLongIntName = -3; // VIOLATION - Field
public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
$otherReallyLongName = -5; // VIOLATION - Local
for ($interestingIntIndex = 0; // VIOLATION - For
$interestingIntIndex < 10;
$interestingIntIndex++ ) {
}
}
}
Source https://phpmd.org/rules/naming.html#longvariable
Avoid excessively long variable names like $filterConsultationTermsListDto. Keep variable name length under 20. Open
Open
?FilterConsultationTermsListDto $filterConsultationTermsListDto = null
- Read upRead up
- Exclude checks
LongVariable
Since: 0.2
Detects when a field, formal or local variable is declared with a long name.
Example
class Something {
protected $reallyLongIntName = -3; // VIOLATION - Field
public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
$otherReallyLongName = -5; // VIOLATION - Local
for ($interestingIntIndex = 0; // VIOLATION - For
$interestingIntIndex < 10;
$interestingIntIndex++ ) {
}
}
}
Source https://phpmd.org/rules/naming.html#longvariable
Line exceeds 120 characters; contains 167 characters Open
Open
$query->whereHas('userTerms', fn ($query) => $query->whereIn('executed_status', [ConsultationTermStatusEnum::APPROVED, ConsultationTermStatusEnum::REPORTED]));
- Exclude checks
Space before opening parenthesis of function call prohibited Open
Open
$query->whereHas('userTerms', fn ($query) => $query->whereIn('executed_status', [ConsultationTermStatusEnum::APPROVED, ConsultationTermStatusEnum::REPORTED]));
- Exclude checks
Space before opening parenthesis of function call prohibited Open
Open
$query->whereHas('userTerms', fn ($query) => $query->where('executed_at', '=', $date));
- Exclude checks