Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot committed May 11, 2016
1 parent e7227d5 commit 87ca6e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Documentarian.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ class Documentarian
*/
public function config($folder, $key = null)
{
$config = include($folder . '/source/config.php' );
$config = include($folder . '/source/config.php');

return is_null($key) ? $config : array_get($config,$key);
return is_null($key) ? $config : array_get($config, $key);
}

/**
Expand Down Expand Up @@ -61,7 +61,7 @@ public function create($folder)
* Generate the API documentation using the markdown and include files
*
* @param $folder
* @return bool
* @return false|null
*/
public function generate($folder)
{
Expand Down

0 comments on commit 87ca6e7

Please sign in to comment.