friendica/include/like.php

11 lines
143 B
PHP
Raw Normal View History

<?php
2018-01-21 19:33:59 +01:00
/**
* @file include/like.php
*/
2018-02-01 20:14:27 +01:00
use Friendica\Model\Item;
function do_like($item_id, $verb) {
2018-02-01 20:14:27 +01:00
Item::performLike($item_id, $verb);
}