├── .editorconfig ├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── inc ├── Orphan_Blog_Meta_Command.php ├── Orphan_Command.php ├── Orphan_Comment_Command.php ├── Orphan_Comment_Meta_Command.php ├── Orphan_Meta_Command.php ├── Orphan_Post_Command.php ├── Orphan_Post_Meta_Command.php ├── Orphan_Revision_Command.php ├── Orphan_Term_Meta_Command.php └── Orphan_User_Meta_Command.php ├── orphan-command.php └── phpcs.xml.dist /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/composer.json -------------------------------------------------------------------------------- /inc/Orphan_Blog_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/inc/Orphan_Blog_Meta_Command.php -------------------------------------------------------------------------------- /inc/Orphan_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/inc/Orphan_Command.php -------------------------------------------------------------------------------- /inc/Orphan_Comment_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/inc/Orphan_Comment_Command.php -------------------------------------------------------------------------------- /inc/Orphan_Comment_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/inc/Orphan_Comment_Meta_Command.php -------------------------------------------------------------------------------- /inc/Orphan_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/inc/Orphan_Meta_Command.php -------------------------------------------------------------------------------- /inc/Orphan_Post_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/inc/Orphan_Post_Command.php -------------------------------------------------------------------------------- /inc/Orphan_Post_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/inc/Orphan_Post_Meta_Command.php -------------------------------------------------------------------------------- /inc/Orphan_Revision_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/inc/Orphan_Revision_Command.php -------------------------------------------------------------------------------- /inc/Orphan_Term_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/inc/Orphan_Term_Meta_Command.php -------------------------------------------------------------------------------- /inc/Orphan_User_Meta_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/inc/Orphan_User_Meta_Command.php -------------------------------------------------------------------------------- /orphan-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/orphan-command.php -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/orphan-command/HEAD/phpcs.xml.dist --------------------------------------------------------------------------------