PATH:
home
/
shotlining
/
portal.shotlining.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
task-list
/
domain
/
tasks
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\Task_List\Domain\Tasks; /** * Abstract class for a parent task (a task with child tasks). * Use this when you need a parent task that is NOT a post type task. */ abstract class Abstract_Parent_Task extends Abstract_Task implements Parent_Task_Interface { use Parent_Task_Trait; }
[-] 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]