Fix code formatting + class docs

This commit is contained in:
Daniel Rudolf 2016-01-07 03:00:21 +01:00
parent 0198d827bf
commit 73078a3dc3
2 changed files with 3 additions and 3 deletions

View file

@ -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 {

View file

@ -133,7 +133,7 @@ class Pico
* Meta data of the page to serve
*
* @see Pico::getFileMeta()
* @var string[]|null
* @var array|null
*/
protected $meta;