Showing 331 of 503 total issues
Function generateClassName
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
protected function generateClassName($tableName, $useSchemaName = null)
{
if (isset($this->classNames[$tableName])) {
return $this->classNames[$tableName];
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function actionIndex
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
public function actionIndex()
{
$tempName = null;
if ($this->identifier === null) {
$this->identifier = Inflector::variablize($this->prompt('Enter the filter identifier: (e.g. profilePicture)', ['required' => true, 'pattern' => '/^[a-zA-Z0-9]+$/i', 'error' => 'The filter identifer can only contain a-z,A-Z,0-9']));
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function controller
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
controller: ['$scope', function ($scope) {
if ($scope.model === undefined) {
$scope.model = [];
}
Function controller
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
controller: ['$scope', function ($scope) {
if ($scope.model === undefined || !$scope.model) {
if ($scope.initvalue) {
$scope.model = $scope.initvalue
Function template
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
template: function () {
return '' +
'<div class="form-group form-side-by-side" ng-class="{\'input--hide-label\': i18n}">' +
'<div class="form-side form-side-label">' +
'<label ng-if="label">{{label}}</label>' +
Method run
has 38 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function run()
{
$this->refresh('thumbnail', [
'name' => 'Thumbnail',
'imagine_name' => 'thumbnail',
Method parseDocBlockToArrays
has 38 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function parseDocBlockToArrays(PhpDocReflection $reflection)
{
$rows = [
'texts' => [],
'return' => [], // @return <type> <description>
Function template
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
template: function () {
return '' +
'<div class="form-group form-side-by-side" ng-class="{\'input--hide-label\': i18n}">' +
'<div class="form-side form-side-label">' +
'<label for="{{id}}">{{label}}</label>' +
Method actionUser
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionUser()
{
while (true) {
$email = $this->prompt('User Email:');
if (!empty(User::findByEmail($email))) {
Method safeUp
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function safeUp()
{
// user login agent
$this->addColumn('{{%admin_user_login}}', 'user_agent', $this->string());
Method actionTwofaToken
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionTwofaToken()
{
if (($lockout = $this->sessionBruteForceLock(Yii::$app->session->get('secureId')))) {
return $this->sendArray(false, [Module::t('login_async_submission_limit_reached', ['time' => Yii::$app->formatter->asRelativeTime($lockout)])]);
}
Method actionReset
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionReset()
{
if (!$this->module->resetPassword) {
throw new ForbiddenHttpException();
}
Function onAfterListFind
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
public function onAfterListFind($event)
{
$value = $event->sender->getAttribute($this->name);
if (!$this->i18n) {
$value = $this->jsonDecode($value);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function onBeforeSave
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
public function onBeforeSave($event)
{
// if its not i18n casted field we have to serialize the file array as json and abort further event excution.
if (!$this->i18n) {
// as it could be an assigned array from the frontend model assigne via a form, we verify if the array contains a value key.
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function run
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
public function run($id)
{
$model = $this->modelClass::ngRestFind()->byPrimaryKey($id)->one();
if (!$model) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function observeLogin
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
var observeLogin = function (form, url, secureUrl, twoFaUrl) {
$(form).submit(function (e) {
$('#errorsContainer').hide();
$('.login-btn[type="submit"]').attr('disabled', true);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function ensureFileUpload
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
public function ensureFileUpload($fileSource, $fileName)
{
// throw exception if source or name is empty
if (empty($fileSource) || empty($fileName)) {
throw new Exception("Filename and source can not be empty.");
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function createImage
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
public function createImage($fileId, $filterId)
{
gc_collect_cycles();
$image = StorageImage::find()->where(['file_id' => $fileId, 'filter_id' => $filterId])->one();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function actionCleanupImageTable
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
public function actionCleanupImageTable()
{
$rows = Yii::$app->db->createCommand('SELECT file_id, filter_id, COUNT(*) as count FROM {{%admin_storage_image}} GROUP BY file_id, filter_id HAVING COUNT(*) > 1')->queryAll();
if (empty($rows)) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function startImages
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
protected function startImages()
{
$imageCount = 0;
// sync images
foreach ((new \luya\admin\image\Query())->all() as $image) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"