Post.php 383 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace Blaze\Directives;
  3. use Blaze\Contracts\DirectiveContract;
  4. class Article implements DirectiveContract
  5. {
  6. public function register()
  7. {
  8. // TODO: Implement register() method.
  9. }
  10. protected function getArticlesByCategoryId()
  11. {
  12. }
  13. protected function getArticlesByTagId()
  14. {}
  15. protected function getArticleById()
  16. {
  17. }
  18. }