9 lines
223 B
PHP
9 lines
223 B
PHP
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
interface HookPortfolioItemEditedObserverInterface extends HookObserverInterface
|
|
{
|
|
public function hookItemEdited(HookPortfolioItemEditedEventInterface $hookEvent);
|
|
}
|