Showing 27 of 50 total issues
Method run
has 125 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function run()
{
// Reset cached roles and permissions
app()[PermissionRegistrar::class]->forgetCachedPermissions();
File settings.blade.php
has 287 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
@extends('layouts.app')
@section('content')
<script src="{{ asset('js/masonry.pkgd.min.js') }}"></script>
<div class="container">
Method up
has 59 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function up()
{
$tableNames = config('permission.table_names');
$columnNames = config('permission.column_names');
Method createStudent
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function createStudent($request) {
try {
DB::transaction(function () use ($request) {
$student = User::create([
'first_name' => $request['first_name'],
Method createTeacher
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function createTeacher($request) {
try {
DB::transaction(function () use ($request) {
$user = User::create([
'first_name' => $request['first_name'],
Method index
has 38 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function index(Request $request)
{
$class_id = $request->query('class_id', 0);
$section_id = $request->query('section_id', 0);
$course_id = $request->query('course_id', 0);
Method showCourseMark
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function showCourseMark(Request $request)
{
$session_id = $request->query('session_id');
$semester_id = $request->query('semester_id');
$class_id = $request->query('class_id');
Method create
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function create(Request $request)
{
$class_id = $request->query('class_id');
$section_id = $request->query('section_id');
$course_id = $request->query('course_id');
Method create
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function create(Request $request)
{
if($request->query('class_id') == null){
return abort(404);
}
Function index
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
public function index(Request $request)
{
$class_id = $request->query('class_id', 0);
$section_id = $request->query('section_id', 0);
$course_id = $request->query('course_id', 0);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function showCourseMark
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
public function showCourseMark(Request $request)
{
$session_id = $request->query('session_id');
$semester_id = $request->query('semester_id');
$class_id = $request->query('class_id');
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method rules
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function rules()
{
return [
'first_name' => 'required|string',
'last_name' => 'required|string',
Method calendarEvents
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function calendarEvents(Request $request)
{
$current_school_session_id = $this->getSchoolCurrentSession();
$event = null;
switch ($request->type) {
Method __construct
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
AcademicSettingInterface $academicSettingRepository,
SchoolSessionInterface $schoolSessionRepository,
SchoolClassInterface $schoolClassRepository,
SectionInterface $schoolSectionRepository,
UserInterface $userRepository,
Method __construct
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
AcademicSettingInterface $academicSettingRepository,
UserInterface $userRepository,
SchoolSessionInterface $schoolSessionRepository,
SchoolClassInterface $schoolClassRepository,
SectionInterface $schoolSectionRepository,
Method getAllByStudentId
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function getAllByStudentId($session_id, $semester_id, $class_id, $section_id, $course_id, $student_id) {
Method getAllFinalMarksByStudentId
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function getAllFinalMarksByStudentId($session_id, $student_id, $semester_id, $class_id, $section_id, $course_id);
Method getAllByStudentId
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function getAllByStudentId($session_id, $semester_id, $class_id, $section_id, $course_id, $student_id);
Method getAllFinalMarksByStudentId
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function getAllFinalMarksByStudentId($session_id, $student_id, $semester_id, $class_id, $section_id, $course_id) {
Method getFinalMarksCount
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function getFinalMarksCount($session_id, $semester_id, $class_id, $section_id, $course_id) {