Missing class import via use statement (line '118', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for Distance Ed Email address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '241', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for Unusual Course Notification address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '206', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for International Registrar Email address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '153', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for Uncaught Exception Email address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '171', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for Registrar Email address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '188', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for background/drug check address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '276', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for student data source.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '101', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for Graduate Registrar Email address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '223', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for International Office address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '259', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for email domain address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '135', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for send-from Email address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '83', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for Graduate School Email address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Missing class import via use statement (line '66', column '23'). Open
throw new \InvalidArgumentException('Missing configuration for email domain address.');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
Avoid using static access to class '\PHPWS_Settings' in method 'getInternationalRegEmail'. Open
$result = \PHPWS_Settings::get('intern', 'internationalRegEmail');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getRegistrarEmail'. Open
$result = \PHPWS_Settings::get('intern', 'registrarEmail');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getGraduateRegEmail'. Open
$result = \PHPWS_Settings::get('intern', 'graduateRegEmail');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getDistanceEdEmail'. Open
$result = \PHPWS_Settings::get('intern', 'distanceEdEmail');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getGradSchoolEmail'. Open
$result = \PHPWS_Settings::get('intern', 'gradSchoolEmail');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getUnusualCourseEmail'. Open
$result = \PHPWS_Settings::get('intern', 'unusualCourseEmail');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getSystemName'. Open
$result = \PHPWS_Settings::get('intern', 'systemName');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getStudentDataSource'. Open
$result = \PHPWS_Settings::get('intern', 'studentDataSource');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getInternationalOfficeEmail'. Open
$result = \PHPWS_Settings::get('intern', 'internationalOfficeEmail');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getEmailFromAddress'. Open
$result = \PHPWS_Settings::get('intern', 'fromEmail');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getEmailDomain'. Open
$result = \PHPWS_Settings::get('intern', 'emailDomain');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getExceptionEmail'. Open
$result = \PHPWS_Settings::get('intern', 'uncaughtExceptionEmail');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Avoid using static access to class '\PHPWS_Settings' in method 'getBackgroundCheckEmail'. Open
$result = \PHPWS_Settings::get('intern', 'backgroundCheckEmail');
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
@throws type of getDistanceEdEmail
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getDistanceEdEmail()
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getBackgroundCheckEmail
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getBackgroundCheckEmail()
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getInternationalOfficeEmail
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getInternationalOfficeEmail()
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'emailDomain');
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getGradSchoolEmail
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getGradSchoolEmail()
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getGraduateRegEmail
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getGraduateRegEmail()
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getUnusualCourseEmail
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getUnusualCourseEmail()
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'systemName');
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'distanceEdEmail');
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'fromEmail');
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'uncaughtExceptionEmail');
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getEmailFromAddress
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getEmailFromAddress()
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'gradSchoolEmail');
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getSystemName
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getSystemName()
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getInternationalRegEmail
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getInternationalRegEmail()
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'unusualCourseEmail');
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getStudentDataSource
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getStudentDataSource()
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'graduateRegEmail');
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getRegistrarEmail
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getRegistrarEmail()
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'registrarEmail');
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getExceptionEmail
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getExceptionEmail()
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'internationalRegEmail');
- Create a ticketCreate a ticket
- Exclude checks
@throws type of getEmailDomain
has undeclared type \Intern\InvalidArgumentException
(Did you mean class \InvalidArgumentException) Open
public function getEmailDomain()
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'backgroundCheckEmail');
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'internationalOfficeEmail');
- Create a ticketCreate a ticket
- Exclude checks
Call to method get
from undeclared class \PHPWS_Settings
Open
$result = \PHPWS_Settings::get('intern', 'studentDataSource');
- Create a ticketCreate a ticket
- Exclude checks