Avoid using static access to class '\App\YetiForce\Shop' in method 'process'. Open
$product = \App\YetiForce\Shop::getProduct($request->getByType('product', \App\Purifier::ALNUM2), $productId);
- 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
Avoid using static access to class '\App\Log' in method 'process'. Open
\App\Log::error($e->__toString());
- 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
Avoid using static access to class '\App\Language' in method 'preProcessAjax'. Open
$this->pageTitle = \App\Language::translate('LBL_PRODUCT_PREVIEW', $this->qualifiedModuleName);
- 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
Reference to undeclared property \Settings_YetiForce_ProductModal_View->pageTitle
Open
$this->pageTitle = \App\Language::translate('LBL_PRODUCT_PREVIEW', $this->qualifiedModuleName);
- Exclude checks
Static call to undeclared method \App\Controller\ModalSettings::preProcessAjax
Open
parent::preProcessAjax($request);
- Exclude checks
Call to undeclared method \Settings_YetiForce_ProductModal_View::getViewer
Open
$viewer = $this->getViewer($request);
- Exclude checks
Call to method error
from undeclared class \App\Log
Open
\App\Log::error($e->__toString());
- Exclude checks
Reference to undeclared property \Settings_YetiForce_ProductModal_View->modalIcon
Open
$this->modalIcon = 'yfi-prodprouct-preview';
- Exclude checks
Call to method getProduct
from undeclared class \App\YetiForce\Shop
Open
$product = \App\YetiForce\Shop::getProduct($request->getByType('product', \App\Purifier::ALNUM2), $productId);
- Exclude checks
Reference to undeclared property \Settings_YetiForce_ProductModal_View->successBtn
Open
$this->successBtn = $product->getStatus() ? '' : 'LBL_BUY';
- Exclude checks
Each class must be in a namespace of at least one level (a top-level vendor name) Open
class Settings_YetiForce_ProductModal_View extends \App\Controller\ModalSettings
- Exclude checks
The class Settings_YetiForce_ProductModal_View is not named in CamelCase. Open
class Settings_YetiForce_ProductModal_View extends \App\Controller\ModalSettings
{
/** {@inheritdoc} */
public $modalSize = 'modal-full';
/**
- Read upRead up
- Exclude checks
CamelCaseClassName
Since: 0.2
It is considered best practice to use the CamelCase notation to name classes.
Example
class class_name {
}
Source
Spaces must be used to indent lines; tabs are not allowed Open
/**
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
/** @var string Qualified module name. */
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
parent::preProcessAjax($request);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
{
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
public function preProcessAjax(App\Request $request)
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
* @var string
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
public $headerClass = 'modal-header-xl';
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
{
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
public $qualifiedModuleName;
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$this->successBtn = $product->getStatus() ? '' : 'LBL_BUY';
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$viewer->assign('PRICE', $product->getPrice());
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$viewer->view('ProductModal.tpl', $this->qualifiedModuleName);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
} catch (\Throwable $e) {
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
* @param \App\Request $request
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
* Process user request.
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$viewer->assign('IMAGE', $product->getImage());
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
* Header class.
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
*/
- Exclude checks
Line exceeds 120 characters; contains 122 characters Open
$product = \App\YetiForce\Shop::getProduct($request->getByType('product', \App\Purifier::ALNUM2), $productId);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$productId = $request->isEmpty('productId') ? '' : $request->getByType('productId', \App\Purifier::ALNUM2);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$viewer->assign('CURRENCY', $product->getCurrencyCode());
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
*
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$this->pageTitle = \App\Language::translate('LBL_PRODUCT_PREVIEW', $this->qualifiedModuleName);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
/**
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
*
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
*/
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$viewer = $this->getViewer($request);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
public $modalSize = 'modal-full';
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$this->qualifiedModuleName = $request->getModule(false);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$viewer->assign('BTN_LINKS', $links);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
* Set modal title.
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$viewer->assign('PRODUCT', $product);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
/** {@inheritdoc} */
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
*
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$this->modalIcon = 'yfi-prodprouct-preview';
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
}
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
public function process(App\Request $request)
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
}
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
/**
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
*/
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
* @param \App\Request $request
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
try {
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$product = \App\YetiForce\Shop::getProduct($request->getByType('product', \App\Purifier::ALNUM2), $productId);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$links = $product->getAdditionalButtons() ?? [];
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
}
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$viewer->assign('MODULE', $this->qualifiedModuleName);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
\App\Log::error($e->__toString());
- Exclude checks
Class name "Settings_YetiForce_ProductModal_View" is not in camel caps format Open
class Settings_YetiForce_ProductModal_View extends \App\Controller\ModalSettings
- Exclude checks