9 lines
230 B
PHP
9 lines
230 B
PHP
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
interface HookPortfolioItemDeletedHookObserverInterface extends HookObserverInterface
|
|
{
|
|
public function hookItemDeleted(HookPortfolioItemDeletedEventInterface $hookEvent);
|
|
}
|