Completed
Push — master ( 4ebc5f...3e00f0 )
by John
83:19 queued 37:57
created

Erdiko.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * Erdiko
4
 *
5
 * Some global helpers.
6
 * This class exists mostly as a legacy wrapper and easy access to the core helpers
7
 *
8
 * @category    Erdiko
9
 * @package     Erdiko
10
 * @copyright   Copyright (c) 2016, Arroyo Labs, www.arroyolabs.com
11
 * @author      John Arroyo, [email protected]
12
 */
13
14
15
class Erdiko extends \erdiko\core\Helper
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
16
{
17
    
18
}
19