15 lines
276 B
PHP
15 lines
276 B
PHP
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Interface HookPortfolioItemCommentedEventInterface.
|
|
*/
|
|
interface HookPortfolioItemCommentedEventInterface extends HookEventInterface
|
|
{
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function notifyItemCommented();
|
|
}
|