Completed
Pull Request — master (#2027)
by
unknown
41:34
created

MailTemplateRepository::findOrCreate()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 21
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 3.0067

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 3
eloc 14
c 1
b 0
f 0
nc 3
nop 2
dl 0
loc 21
ccs 10
cts 11
cp 0.9091
crap 3.0067
rs 9.3142
1
<?php
2
/*
3
 * This file is part of EC-CUBE
4
 *
5
 * Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved.
6
 *
7
 * http://www.lockon.co.jp/
8
 *
9
 * This program is free software; you can redistribute it and/or
10
 * modify it under the terms of the GNU General Public License
11
 * as published by the Free Software Foundation; either version 2
12
 * of the License, or (at your option) any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 * GNU General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU General Public License
20
 * along with this program; if not, write to the Free Software
21
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
 */
23
24
25
namespace Eccube\Repository;
26
27
use Doctrine\ORM\EntityRepository;
28
use Eccube\Common\Constant;
29
30
/**
31
 * MailTemplateRepository
32
 *
33
 * This class was generated by the Doctrine ORM. Add your own custom
34
 * repository methods below.
35
 */
36
class MailTemplateRepository extends EntityRepository
37
{
38 2
    public function findOrCreate($id, $Creator = null)
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
39
    {
40 2
        if ($id == 0) {
41 2
            if ($Creator == null) {
42
                $Creator = $this
43 2
                    ->getEntityManager()
44 2
                    ->getRepository('\Eccube\Entity\Member')
45 2
                    ->findOneBy(array(), array('rank' => 'ASC'));
46
            }
47
48 2
            $MailTemplate = new \Eccube\Entity\MailTemplate();
49
            $MailTemplate
50 2
                ->setDelFlg(Constant::DISABLED)
51 2
                ->setCreator($Creator);
52
        } else {
53
            $MailTemplate = $this->find($id);
54
0 ignored issues
show
Coding Style introduced by
Blank line found at end of control structure
Loading history...
55
        }
56
57 2
        return $MailTemplate;
58
    }
59
}
60