14 lines
198 B
PHP
14 lines
198 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Drupal\opdavies_blog\Service\PostPusher;
|
||
|
|
||
|
use Drupal\opdavies_blog\Entity\Node\Post;
|
||
|
|
||
|
interface PostPusher {
|
||
|
|
||
|
public function push(Post $post): void;
|
||
|
|
||
|
}
|