Skip to content

Commit

Permalink
Rename class names and organize code
Browse files Browse the repository at this point in the history
  • Loading branch information
cable8mm committed Mar 5, 2024
1 parent df09675 commit 257986b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion bin/console
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ require __DIR__.'/../vendor/autoload.php';
use Cable8mm\DbToMarkdown\Command\CleanCommand;
use Cable8mm\DbToMarkdown\Command\CreateJekyllCommand;
use Cable8mm\DbToMarkdown\Command\CreateMarkdownsCommand;
use Cable8mm\DbToMarkdown\Command\EmptyCommand;
use Cable8mm\DbToMarkdown\Command\SeedingCommand;
use Symfony\Component\Console\Application;

Expand Down
2 changes: 1 addition & 1 deletion src/Formats/IFormats.php → src/Formats/IFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Cable8mm\DbToMarkdown\Formats;

interface IFormats
interface IFormat
{
public function path(): string;

Expand Down
2 changes: 1 addition & 1 deletion src/Formats/Jekyll.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Carbon\Carbon;

class Jekyll implements IFormats
class Jekyll implements IFormat
{
public function __construct(
private string $layout,
Expand Down
2 changes: 1 addition & 1 deletion src/Formats/Markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Carbon\Carbon;

class Markdown implements IFormats
class Markdown implements IFormat
{
public function __construct(
private Carbon $date,
Expand Down

0 comments on commit 257986b

Please sign in to comment.