PATH:
home
/
shotlining
/
portal.shotlining.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
task-list
/
domain
/
tasks
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Given it's a very specific case. namespace Yoast\WP\SEO\Task_List\Domain\Tasks; /** * Represents a completeable task. */ interface Completeable_Task_Interface extends Task_Interface { /** * Completes a task. * * @return void */ public function complete_task(): void; }
[-] child-task-interface.php
[edit]
[-] abstract-child-task.php
[edit]
[+]
..
[-] abstract-post-type-parent-task.php
[edit]
[-] parent-task-interface.php
[edit]
[-] abstract-parent-task.php
[edit]
[-] task-interface.php
[edit]
[-] abstract-post-type-task.php
[edit]
[-] post-type-task-interface.php
[edit]
[-] abstract-task.php
[edit]
[-] completeable-task-interface.php
[edit]
[-] parent-task-trait.php
[edit]