-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add git config core.ignorecase false
- Loading branch information
1 parent
1bd58b9
commit 953e2e2
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
declare( strict_types=1 ); | ||
|
||
namespace WordPress_Related\Post_Type; | ||
|
||
use WordPress_Related\Infrastructure\Registerable; | ||
|
||
/** | ||
* Post_Type class for WordPress Related Plugin. | ||
* | ||
* This class is responsible for registering and managing a custom post type | ||
* for the WordPress Related plugin. | ||
* | ||
* @package WORDPRESS_RELATED | ||
* @copyright Copyright (C) 2023-2023, WordPress Related - freibergergarcia@gmail.com | ||
* @link https://www.github.com/freibergergarcia/wordpress-related | ||
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2.0 | ||
* @since 1.0.0 | ||
* @see https://developer.wordpress.org/plugins/post-types/ | ||
*/ | ||
class Post_Type implements Registerable { | ||
|
||
/** | ||
* Register the post type. | ||
* | ||
* @return void | ||
*/ | ||
public function register(): void { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
declare( strict_types=1 ); | ||
|
||
namespace WordPress_Related\Taxonomy; | ||
|
||
use WordPress_Related\Infrastructure\Registerable; | ||
|
||
/** | ||
* Taxonomy class for WordPress Related Plugin. | ||
* | ||
* This class is responsible for registering and managing a custom taxonomy | ||
* for the WordPress Related plugin. | ||
* | ||
* @package WORDPRESS_RELATED | ||
* @copyright Copyright (C) 2023-2023, WordPress Related - freibergergarcia@gmail.com | ||
* @link https://www.github.com/freibergergarcia/wordpress-related | ||
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2.0 | ||
* @since 1.0.0 | ||
* @see https://developer.wordpress.org/plugins/taxonomies/ | ||
*/ | ||
class Taxonomy implements Registerable { | ||
|
||
/** | ||
* Register the taxonomy. | ||
* | ||
* @return void | ||
*/ | ||
public function register(): void { | ||
} | ||
} |