Completed
Push — master ( 630802...d9facf )
by Razon
02:13
created

ArticleMetaFactory   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 6
c 1
b 0
f 0
dl 0
loc 14
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($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
    public static function create(int $articleId, string $content): ArticleMeta
17
    {
18
        return new ArticleMeta([
19
            'article_id' => $articleId,
20
            'content' => $content,
21
        ]);
22
    }
23
}
24