editTag() 공개 메소드

Rename a tag
public editTag ( integer $tagId, array $post ) : boolean
$tagId integer
$post array
리턴 boolean
예제 #1
0
파일: Blog.php 프로젝트: paragonie/airship
 /**
  * @param int $tagId
  * @param array $post
  * @return bool
  */
 protected function processEditTag(int $tagId, array $post) : bool
 {
     return $this->blog->editTag($tagId, $post);
 }