12345678910111213141516171819202122232425262728 |
- <?php
- namespace Blaze\Directives;
- use Blaze\Contracts\DirectiveContract;
- class Article implements DirectiveContract
- {
- public function register()
- {
- // TODO: Implement register() method.
- }
- protected function getArticlesByCategoryId()
- {
- }
- protected function getArticlesByTagId()
- {}
- protected function getArticleById()
- {
- }
- }
|