Skip to content

Commit

Permalink
🔀 Merge pull request #74 from carbontwelve/analysis-XpOp1o
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
carbontwelve authored Jan 17, 2017
2 parents 1fb7faa + e5f5b54 commit 8702d43
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Entities/ContentType.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ public function getFileList($order = 'desc')
if ($order === 'asc') {
return ($a < $b) ? -1 : 1;
}

return ($a > $b) ? -1 : 1;
});

Expand Down
1 change: 1 addition & 0 deletions src/Entities/Generators/TaxonomyIndexGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public function generate(Project $project)
return $value !== 'TaxonomyIndexGenerator';
}),
]);

return $this->file;
}

Expand Down
3 changes: 2 additions & 1 deletion src/Entities/Taxonomy.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class Taxonomy
{
/**
* The name of this Taxonomy
* The name of this Taxonomy.
*
* @var string
*/
Expand Down Expand Up @@ -71,6 +71,7 @@ public function getFileList($order = 'desc')
if ($order === 'asc') {
return ($a < $b) ? -1 : 1;
}

return ($a > $b) ? -1 : 1;
});

Expand Down

0 comments on commit 8702d43

Please sign in to comment.