Last active
March 4, 2019 18:05
-
-
Save ger86/64a895510f5b9d9701df0292fb26c65b 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 { | |
const SHORTCODE_TAG = 'lac.shortcode'; | |
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