class/UI/NotifyUI.php
Avoid using static access to class '\PHPWS_Template' in method 'display'. Open
Open
$content = \PHPWS_Template::process($tags, 'intern', 'notification.tpl');
- 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 '\NQ' in method 'display'. Open
Open
$notifications = \NQ::popAll('intern');
- 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
Saw unextractable annotation for comment '* @return - Properly styled notifications.'
Open
Open
* @return - Properly styled notifications.
- Create a ticketCreate a ticket
- Exclude checks
Call to method initModClass
from undeclared class \PHPWS_Core
Open
Open
\PHPWS_Core::initModClass('notification', 'NQ.php');
- Create a ticketCreate a ticket
- Exclude checks
Call to method process
from undeclared class \PHPWS_Template
Open
Open
$content = \PHPWS_Template::process($tags, 'intern', 'notification.tpl');
- Create a ticketCreate a ticket
- Exclude checks
Parameter $n
has undeclared type \Notification
Open
Open
private static function getType(\Notification $n)
- Create a ticketCreate a ticket
- Exclude checks
Call to method getType
from undeclared class \Notification
Open
Open
switch($n->getType()){
- Create a ticketCreate a ticket
- Exclude checks
Call to method popAll
from undeclared class \NQ
Open
Open
$notifications = \NQ::popAll('intern');
- Create a ticketCreate a ticket
- Exclude checks
Avoid variables with short names like $n. Configured minimum length is 3. Open
Open
private static function getType(\Notification $n)
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
ShortVariable
Since: 0.2
Detects when a field, local, or parameter has a very short name.
Example
class Something {
private $q = 15; // VIOLATION - Field
public static function main( array $as ) { // VIOLATION - Formal
$r = 20 + $this->q; // VIOLATION - Local
for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
$r += $this->q;
}
}
}