Skip to content

Commit

Permalink
add git config core.ignorecase false
Browse files Browse the repository at this point in the history
  • Loading branch information
freibergergarcia committed Sep 29, 2023
1 parent 1bd58b9 commit 953e2e2
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
31 changes: 31 additions & 0 deletions includes/Post_Type/Post_Type.php
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 {
}
}
31 changes: 31 additions & 0 deletions includes/Taxonomy/Taxonomy.php
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 {
}
}

0 comments on commit 953e2e2

Please sign in to comment.