Skip to content

Instantly share code, notes, and snippets.

@ger86
Last active March 4, 2019 18:05
Show Gist options
  • Save ger86/64a895510f5b9d9701df0292fb26c65b to your computer and use it in GitHub Desktop.
Save ger86/64a895510f5b9d9701df0292fb26c65b to your computer and use it in GitHub Desktop.
<?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