Last active
March 4, 2019 17:56
-
-
Save ger86/87f44f0149161239716c406c7b9c9df5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Shortcode; | |
| interface ShortcodeInterface { | |
| function getName(): string; | |
| function getArgs(): array; | |
| public function apply(array $attrs, string $content): string; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment