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

ArticleMetaFactory::findByArticleId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 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