Fix code formatting + class docs
This commit is contained in:
parent
0198d827bf
commit
73078a3dc3
2 changed files with 3 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
|||
<?php // @codingStandardsIgnoreFile
|
||||
|
||||
// load dependencies
|
||||
if(is_file(__DIR__ . '/vendor/autoload.php')) {
|
||||
if (is_file(__DIR__ . '/vendor/autoload.php')) {
|
||||
// composer root package
|
||||
require_once(__DIR__ . '/vendor/autoload.php');
|
||||
} elseif(is_file(__DIR__ . '/../../../vendor/autoload.php')) {
|
||||
} elseif (is_file(__DIR__ . '/../../../vendor/autoload.php')) {
|
||||
// composer dependency package
|
||||
require_once(__DIR__ . '/../../../vendor/autoload.php');
|
||||
} else {
|
||||
|
|
|
@ -133,7 +133,7 @@ class Pico
|
|||
* Meta data of the page to serve
|
||||
*
|
||||
* @see Pico::getFileMeta()
|
||||
* @var string[]|null
|
||||
* @var array|null
|
||||
*/
|
||||
protected $meta;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue