Skip to content

Instantly share code, notes, and snippets.

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