Skip to content

Commit a059019

Browse files
committed
Add method to interface
1 parent d08bb0d commit a059019

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/Contracts/TaggingUtility.php

+9-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
*
88
* Copyright (C) 2015 Robert Conner
99
*/
10-
interface TaggingUtility {
11-
10+
interface TaggingUtility
11+
{
1212
/**
1313
* Converts input into array
1414
*
@@ -50,9 +50,15 @@ public function decrementCount($tagString, $tagSlug, $count);
5050
/**
5151
* Look at the tags table and delete any tags that are no londer in use by any taggable database rows.
5252
* Does not delete tags where 'suggest' is true
53-
*
53+
*
5454
* @return int
5555
*/
5656
public function deleteUnusedTags();
5757

58+
/**
59+
* Return string with full namespace of the Tag model
60+
*
61+
* @return string
62+
*/
63+
public function tagModelString();
5864
}

0 commit comments

Comments
 (0)