Skip to content

Commit

Permalink
Applied fixes from StyleCI (#14)
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]
  • Loading branch information
DarkaOnLine authored Aug 25, 2016
1 parent 6a55014 commit 45f6657
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/swagger-lume.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,6 @@
*/
'constants' => [
//'SWAGGER_LUME_CONST_HOST' => env('SWAGGER_LUME_CONST_HOST', 'http://my-default-host.com'),
]
],

];
2 changes: 1 addition & 1 deletion src/Generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static function generateDocs()

protected static function defineConstants(array $constants)
{
if (!empty($constants)) {
if (! empty($constants)) {
foreach ($constants as $key => $value) {
defined($key) || define($key, $value);
}
Expand Down

0 comments on commit 45f6657

Please sign in to comment.