RewritingUrlOverride   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A postInsert() 0 3 1
1
<?php
2
/*************************************************************************************/
3
/*      This file is part of the RewriteUrl module for Thelia.                       */
4
/*                                                                                   */
5
/*      Copyright (c) OpenStudio                                                     */
6
/*      email : [email protected]                                                       */
7
/*      web : http://www.thelia.net                                                  */
8
/*                                                                                   */
9
/*      For the full copyright and license information, please view the LICENSE.txt  */
10
/*      file that was distributed with this source code.                             */
11
/*************************************************************************************/
12
13
namespace RewriteUrl\Model;
14
15
use Propel\Runtime\Connection\ConnectionInterface;
16
use Propel\Runtime\Exception\PropelException;
17
use Thelia\Model\RewritingUrl;
18
use RewriteUrl\Model\RewritingRedirectType as ChildRewritingRedirectType;
19
20
/**
21
 * Class RewritingUrlOverride
22
 * @package RewriteUrl\Model
23
 * @author Gilles Bourgeat <[email protected]>
24
 */
25
class RewritingUrlOverride extends RewritingUrl
26
{
27
    /**
28
     * disable the Thelia behavior
29
     *
30
     * @param ConnectionInterface $con
31
     */
32
    public function postInsert(ConnectionInterface $con = null)
33
    {
34
    }
35
}
36