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

AuditTracking::tests()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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