Showing 331 of 503 total issues
Avoid too many return
statements within this method. Open
return $this->sendArray(false, [Module::t('login_async_twofa_verify_error')]);
Avoid too many return
statements within this method. Open
return [
'application/json' => new MediaType([
'schema' => [
'type' => 'object',
],
Avoid too many return
statements within this method. Open
return [
'application/json' => new MediaType([
'schema' => [
'type' => $type->getNoramlizeName(),
],
Avoid too many return
statements within this method. Open
return [];
Avoid too many return
statements within this method. Open
return $class;
Avoid too many return
statements within this method. Open
return false;
Function generateLabelField
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function generateLabelField(ActiveRecordInterface $model)
{
if (is_callable($this->labelField, false)) {
return call_user_func($this->labelField, $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 afterFind
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function afterFind()
{
if ($this->getNgRestCallType()) {
if ($this->getNgRestCallType() == 'list') {
$this->trigger(self::EVENT_AFTER_NGREST_FIND);
- 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 getNgRestScopeConfigOptions
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function getNgRestScopeConfigOptions($config)
{
$configOptions = [];
foreach ($this->ngRestScopes() as $arrayConfig) {
$scope = is_string($arrayConfig[0]) ? [$arrayConfig[0]] : $arrayConfig[0];
- 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 generateNgRestRelations
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function generateNgRestRelations()
{
$relations = [];
// generate relations
foreach ($this->ngRestRelations() as $key => $item) {
- 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 getRelations
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function getRelations()
{
if ($this->_relations === null) {
// ensure relations are made not on composite table.
if ($this->model->ngRestRelations() && (is_countable($this->getPrimaryKey()) ? count($this->getPrimaryKey()) : 0) > 1) {
- 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 apiQueryString
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function apiQueryString($type)
{
// basic query
$query = ['ngrestCallType' => $type];
- 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 getWithRelation
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function getWithRelation($actionName)
{
$expand = Yii::$app->request->get('expand', '');
$relationPrefixes = [];
foreach (StringHelper::explode($expand, ',', true, true) as $relation) {
- 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 getFields
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function getFields($type)
{
if (!array_key_exists($type, $this->_fields)) {
$fields = [];
if ($this->config->hasPointer($type)) {
- 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 relationsFromExpand
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function relationsFromExpand(array $relations, array $expandPrefixes)
{
$valid = [];
foreach ($expandPrefixes as $prefix) {
foreach ($relations as $relation) {
- 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 actionImageProvider
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function actionImageProvider($machine, $buildToken, $imageId)
{
$build = $this->ensureBuild($machine, $buildToken);
if ($build) {
- 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 applyFilter
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function applyFilter(ImageInterface $image, array $saveOptions)
{
gc_collect_cycles();
$imagineEffectName = $this->effect->getImagineEffectName();
- 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 imageFilter
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function imageFilter($filterId, $checkImagesRelation = true)
{
if ($checkImagesRelation) {
foreach ($this->images as $image) {
if ($image->filter_id == $filterId) {
- 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 imageFilter
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function imageFilter($filterId, $checkImagesRelation = true)
{
if ($checkImagesRelation) {
foreach ($this->images as $image) {
if ($image->filter_id == $filterId) {
- 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 findIdentityByAccessToken
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public static function findIdentityByAccessToken($token, $type = null)
{
if (empty($token) || !is_scalar($token)) {
throw new InvalidArgumentException("The provided access token is invalid.");
}
- 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"