ArticleMetaFactory   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Test Coverage

Coverage 57.14%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 6
c 1
b 0
f 0
dl 0
loc 14
ccs 4
cts 7
cp 0.5714
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A findByArticleId() 0 4 1
A create() 0 5 1
1
<?php
2
namespace App\Factory;
3
4
use App\Model\ArticleMeta;
5
use Yii;
6
7
class ArticleMetaFactory
8
{
9
    public static function findByArticleId(int $articleId): ?ArticleMeta
10
    {
11
        return ArticleMeta::findOne([
0 ignored issues
show
Bug Best Practice introduced by
The expression return App\Model\Article...cle_id' => $articleId)) returns the type yii\db\ActiveRecord which includes types incompatible with the type-hinted return App\Model\ArticleMeta|null.
Loading history...
12
            'article_id' => $articleId,
13
        ]);
14
    }
15
16 2
    public static function create(int $articleId, string $content): ArticleMeta
17
    {
18 2
        return new ArticleMeta([
19 2
            'article_id' => $articleId,
20 2
            'content' => $content,
21
        ]);
22
    }
23
}
24