Showing 43 of 43 total issues
Avoid using static access to class '\yii\di\Instance' in method 'init'. Open
Open
$this->renderer = Instance::ensure($this->renderer, JsRendererInterface::class);
- Read upRead up
- 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
The method publishRequireJs uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
Open
} else {
$requireOptions['async'] = 'async';
$requireOptions['defer'] = 'defer';
$main = $this->resolveMainScript($this->main, "{$requireConfig};\n{$code}");
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
Assigning null
to property but \ischenko\yii2\jsloader\requirejs\Module->exports
is string
Open
Open
$this->exports = null;
- Exclude checks
Possibly zero references to public method \ischenko\yii2\jsloader\requirejs\Module::addFallbackFiles()
Open
Open
public function addFallbackFiles(array $files)
- Exclude checks
Possibly zero references to protected method \ischenko\yii2\jsloader\RequireJs::doRender()
Open
Open
protected function doRender(array $jsExpressions)
- Exclude checks
Possibly zero references to public method \ischenko\yii2\jsloader\requirejs\Module::setExports()
Open
Open
public function setExports($exports)
- Exclude checks
Possibly zero references to public method \ischenko\yii2\jsloader\requirejs\Config::getCallback()
Open
Open
public function getCallback()
- Exclude checks
Possibly zero references to public method \ischenko\yii2\jsloader\requirejs\Module::setInit()
Open
Open
public function setInit($init)
- Exclude checks
Possibly zero write references to public property \ischenko\yii2\jsloader\RequireJs->libraryPath
Open
Open
public $libraryPath = '@bower/requirejs/require.js';
- Exclude checks
Possibly zero write references to private property \ischenko\yii2\jsloader\requirejs\Config::$validOptions
Open
Open
static private $validOptions = [
- Exclude checks
Call with 1 arg(s) to \ischenko\yii2\jsloader\requirejs\Module::__construct()
which only takes 0 arg(s) defined at /code/src/requirejs/Module.php:21
Open
Open
$module = new Module($module);
- Exclude checks
Possibly zero references to public method \ischenko\yii2\jsloader\requirejs\Config::toArray()
Open
Open
public function toArray(): array
- Exclude checks
Possibly zero references to public method \ischenko\yii2\jsloader\requirejs\Config::setShim()
Open
Open
public function setShim(array $data)
- Exclude checks
Possibly zero references to public method \ischenko\yii2\jsloader\RequireJs::init()
Open
Open
public function init()
- Exclude checks
Doc-block of addModule
contains declared return type \ischenko\yii2\jsloader\requirejs\Module
which is incompatible with the return type \ischenko\yii2\jsloader\ModuleInterface
declared in the signature Open
Open
* @return Module
- Exclude checks
Doc-block of setOptions
contains declared return type static
which is incompatible with the return type \ischenko\yii2\jsloader\ModuleInterface
declared in the signature Open
Open
* @return $this
- Exclude checks
Doc-block of getConfig
contains declared return type \ischenko\yii2\jsloader\requirejs\Config
which is incompatible with the return type \ischenko\yii2\jsloader\ConfigInterface
declared in the signature Open
Open
* @return Config
- Exclude checks
TODO found Open
Open
* TODO: create setter and getter for map and config
- Exclude checks
Possibly zero references to public method \ischenko\yii2\jsloader\requirejs\Config::setPaths()
Open
Open
public function setPaths(array $data)
- Exclude checks
Possibly zero references to public method \ischenko\yii2\jsloader\requirejs\Module::clearFallbackFiles()
Open
Open
public function clearFallbackFiles()
- Exclude checks