Completed
Pull Request — master (#1632)
by Kentaro
32:45
created

findOrCreateByCustomerAndId()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 22
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 2.0185

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 22
ccs 10
cts 12
cp 0.8333
rs 9.2
cc 2
eloc 16
nc 2
nop 2
crap 2.0185
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
29
/**
30
 * CustomerAddressRepository
31
 *
32
 * This class was generated by the Doctrine ORM. Add your own custom
33
 * repository methods below.
34
 */
35
class CustomerAddressRepository extends EntityRepository
36
{
37
    /**
38
     * @param \Eccube\Entity\Customer $Customer
39
     * @param null $id
0 ignored issues
show
introduced by
Expected 20 spaces after parameter type; 1 found
Loading history...
40
     * @return \Eccube\Entity\CustomerAddress|mixed
41
     * @throws \Doctrine\ORM\NoResultException
42
     * @throws \Doctrine\ORM\NonUniqueResultException
43
     */
44 6
    public function findOrCreateByCustomerAndId(\Eccube\Entity\Customer $Customer, $id = null)
45
    {
46 6
        if (!$id) {
47
            $CustomerAddress = new \Eccube\Entity\CustomerAddress();
48
            $CustomerAddress
49 4
                ->setCustomer($Customer)
50
                ->setDelFlg(0);
51
        } else {
52 4
            $qb = $this->createQueryBuilder('od')
53 4
                ->andWhere('od.Customer = :Customer AND od.id = :id')
54
                ->setParameters(array(
55
                    'Customer' => $Customer,
56
                    'id' => $id,
57
                ));
58
59
            $CustomerAddress = $qb
60 4
                ->getQuery()
61 1
                ->getSingleResult();
62 4
        }
63
64 5
        return $CustomerAddress;
65 6
    }
66
67
    /**
68
     * @param  \Eccube\Entity\Customer $Customer
69
     * @param  integer                 $id
70
     * @return bool
71
     */
72 4 View Code Duplication
    public function deleteByCustomerAndId(\Eccube\Entity\Customer $Customer, $id)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
73
    {
74 4
        $qb = $this->createQueryBuilder('od')
75 4
            ->andWhere('od.Customer = :Customer AND od.id = :id')
76
            ->setParameters(array(
77
                'Customer' => $Customer,
78
                'id' => $id,
79
            ));
80
81
        try {
82
            $CustomerAddress = $qb
83 4
                ->getQuery()
84 2
                ->getSingleResult();
85
        } catch (\Exception $e) {
86 2
            return false;
87 4
        }
88
89
        $em = $this->getEntityManager();
90
        $em->remove($CustomerAddress);
91
        $em->flush();
92
93 2
        return true;
94 4
    }
95
}
96