Completed
Push — feature/EVO-7278-tracking-info... ( d73a1e )
by
unknown
63:38
created

AuditTracking   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 15
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A tests() 0 4 1
1
<?php
2
/**
3
 * model class for GravitonDyn\ActivityLogBundle\Model\ActivityLog
4
 */
5
6
namespace Graviton\AuditTrackingBundle\Model;
7
8
use Graviton\RestBundle\Model\DocumentModel;
9
10
/**
11
 * GravitonDyn\ActivityLogBundle\Model\ActivityLog
12
 *
13
 * @author   List of contributors <https://github.com/libgraviton/graviton/graphs/contributors>
14
 * @license  http://opensource.org/licenses/gpl-license.php GNU Public License
15
 * @link     http://swisscom.ch
16
 */
17
class AuditTracking extends DocumentModel
18
{
19
20
    /**
21
     * this helps for fallback logic on outside classes to locate resources
22
     *
23
     * @var string
24
     */
25
    protected $_modelPath = __FILE__;
0 ignored issues
show
Coding Style introduced by
$_modelPath does not seem to conform to the naming convention (^[a-z][a-zA-Z0-9]*$).

This check examines a number of code elements and verifies that they conform to the given naming conventions.

You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.

Loading history...
26
27
    public function tests()
28
    {
29
       // $n = new \Graviton\AuditTrackingBundle\Document\AuditTracking()
30
    }
31
}
32