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