12 lines
215 B
PHP
12 lines
215 B
PHP
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
interface HookPortfolioItemVisibilityEventInterface extends HookEventInterface
|
|
{
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function notifyItemVisibility();
|
|
}
|