Completed
Push — master ( d21dd2...a23d9a )
by Beñat
8s
created

ExampleAjax::ajax()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
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 3
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the WordPress Standard project.
5
 *
6
 * Copyright (c) 2015-2016 LIN3S <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace AppTheme\Ajax;
13
14
use LIN3S\WPFoundation\Ajax\Ajax;
15
16
/**
17
 * Very basic example of Ajax class.
18
 *
19
 * @author Gorka Laucirica <[email protected]>
20
 * @author Beñat Espiña <[email protected]>
21
 */
22
final class ExampleAjax extends Ajax
23
{
24
    /**
25
     * {@inheritdoc}
26
     */
27
    public function ajax()
28
    {
29
    }
30
}
0 ignored issues
show
Coding Style introduced by
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
31