http://isbbethesda.com/index.php//cms/wp-includes/wlwmanifest.xml

Query Metrics

9 Database Queries
5 Different statements
6.89 ms Query time
8 Invalid entities

Queries

Group similar statements

# Time Info
1 0.30 ms
SELECT DATABASE()
Parameters:
[]
2 1.30 ms
SELECT TABLE_NAME
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = ?
  AND TABLE_TYPE = 'BASE TABLE'
ORDER BY TABLE_NAME
Parameters:
[
  "bethesda"
]
3 0.18 ms
SELECT DATABASE()
Parameters:
[]
4 1.03 ms
SELECT TABLE_NAME
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = ?
  AND TABLE_TYPE = 'BASE TABLE'
ORDER BY TABLE_NAME
Parameters:
[
  "bethesda"
]
5 0.20 ms
SELECT DATABASE()
Parameters:
[]
6 1.09 ms
SELECT t.TABLE_NAME,
           t.ENGINE,
           t.AUTO_INCREMENT,
           t.TABLE_COMMENT,
           t.CREATE_OPTIONS,
           t.TABLE_COLLATION,
           ccsa.CHARACTER_SET_NAME
      FROM information_schema.TABLES t
        INNER JOIN information_schema.COLLATION_CHARACTER_SET_APPLICABILITY ccsa
            ON ccsa.COLLATION_NAME = t.TABLE_COLLATION WHERE t.TABLE_SCHEMA = ? AND t.TABLE_NAME = ? AND t.TABLE_TYPE = 'BASE TABLE'
Parameters:
[
  "bethesda"
  "doctrine_migration_versions"
]
7 0.21 ms
SELECT DATABASE()
Parameters:
[]
8 1.50 ms
SELECT DISTINCT            k.CONSTRAINT_NAME,
            k.COLUMN_NAME,
            k.REFERENCED_TABLE_NAME,
            k.REFERENCED_COLUMN_NAME,
            k.ORDINAL_POSITION /*!50116,
            c.UPDATE_RULE,
            c.DELETE_RULE */
FROM information_schema.key_column_usage k /*!50116
INNER JOIN information_schema.referential_constraints c
ON c.CONSTRAINT_NAME = k.CONSTRAINT_NAME
AND c.TABLE_NAME = k.TABLE_NAME */ WHERE k.TABLE_SCHEMA = ? AND k.TABLE_NAME = ? AND k.REFERENCED_COLUMN_NAME IS NOT NULL /*!50116 AND c.CONSTRAINT_SCHEMA = 'bethesda' */ ORDER BY k.ORDINAL_POSITION
Parameters:
[
  "bethesda"
  "doctrine_migration_versions"
]
9 1.07 ms
SELECT       c.COLUMN_NAME        AS field,
           IF(
        c.COLUMN_TYPE = 'longtext'
        AND EXISTS(
            SELECT * FROM information_schema.CHECK_CONSTRAINTS i_c
            WHERE i_c.CONSTRAINT_SCHEMA = 'bethesda'
            AND i_c.TABLE_NAME = c.TABLE_NAME
            AND i_c.CHECK_CLAUSE = CONCAT(
                'json_valid(`',
                    c.COLUMN_NAME,
                '`)'
            )
        ),
        'json',
        c.COLUMN_TYPE
    )       AS TYPE,
       c.IS_NULLABLE        AS `null`,
       c.COLUMN_KEY         AS `key`,
       c.COLUMN_DEFAULT     AS `default`,
       c.EXTRA,
       c.COLUMN_COMMENT     AS COMMENT,
       c.CHARACTER_SET_NAME AS characterset,
       c.COLLATION_NAME     AS COLLATION
FROM information_schema.COLUMNS c
    INNER JOIN information_schema.TABLES t
        ON t.TABLE_NAME = c.TABLE_NAME
     WHERE c.TABLE_SCHEMA = ? AND t.TABLE_SCHEMA = ? AND t.TABLE_TYPE = 'BASE TABLE' AND t.TABLE_NAME = ? ORDER BY ORDINAL_POSITION
Parameters:
[
  "bethesda"
  "bethesda"
  "doctrine_migration_versions"
]

Database Connections

Name Service
default doctrine.dbal.default_connection

Entity Managers

Name Service
default doctrine.orm.default_entity_manager

Second Level Cache

Second Level Cache is not enabled.

Entities Mapping

Class Mapping errors
App\Entity\Payment No errors.
App\Entity\Subscription No errors.
App\Entity\Attribution No errors.
App\Entity\Level No errors.
App\Entity\Domain
  • The association App\Entity\Domain#headOfDepartment refers to the inverse side field App\Entity\User#headOfDepartementOf which does not exist.
App\Entity\Installment No errors.
App\Entity\Section No errors.
App\Entity\AbscenceSheet No errors.
App\Entity\Module No errors.
App\Entity\PaymentPlan
  • The association App\Entity\PaymentPlan#payments refers to the owning side field App\Entity\Payment#paymentPlan which does not exist.
  • The field App\Entity\PaymentPlan#installments is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\Installment#paymentPlan does not contain the required 'inversedBy="installments"' attribute.
App\Entity\Evaluation No errors.
App\Entity\Cycle No errors.
App\Entity\Program No errors.
App\Entity\Sequence No errors.
App\Entity\User
  • The association App\Entity\User#fullTeacherOf refers to the owning side field App\Entity\ClassRoom#fullTeacher which does not exist.
  • The field App\Entity\User#attributions is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\Attribution#teacher does not contain the required 'inversedBy="attributions"' attribute.
App\Entity\Course
  • The field App\Entity\Course#attributions is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\Attribution#course does not contain the required 'inversedBy="attributions"' attribute.
App\Entity\ResetPasswordRequest No errors.
App\Entity\Email No errors.
App\Entity\Student
  • The field App\Entity\Student#payments is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\Payment#student does not contain the required 'inversedBy="payments"' attribute.
App\Entity\Quater No errors.
App\Entity\MainTeacher
  • The association App\Entity\MainTeacher#teacher refers to the inverse side field App\Entity\User#mainTeachers which does not exist.
App\Entity\ClassRoom
  • The mappings App\Entity\ClassRoom#mainTeachers and App\Entity\MainTeacher#classRoom are inconsistent with each other.
App\Entity\Abscence No errors.
App\Entity\Mark No errors.
App\Entity\SchoolYear
  • The field App\Entity\SchoolYear#paymentPlan is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\PaymentPlan#schoolYear does not contain the required 'inversedBy="paymentPlan"' attribute.
Vich\UploaderBundle\Entity\File No errors.