diff --git a/docs/03-tutorial/01-domain/05-repository.md b/docs/03-tutorial/01-domain/05-repository.md index 0bff3a6..f7da6ba 100644 --- a/docs/03-tutorial/01-domain/05-repository.md +++ b/docs/03-tutorial/01-domain/05-repository.md @@ -60,7 +60,7 @@ Setelah itu kita buatkan implementasinya. Untuk `Post`: -```php title="src/Infrastructure/Repository/PostRepository.php" +```php title="src/Infrastructure/Repository/PostRepositoryImpl.php" namespace App\Infrastructure\Repository; use App\Domain\Entity\Post; @@ -72,7 +72,7 @@ use Rekalogika\Collections\ORM\AbstractRepository; /** * @extends AbstractRepository */ -class PostRepository extends AbstractRepository implements PostRepository +class PostRepositoryImpl extends AbstractRepository implements PostRepository { public function __construct(ManagerRegistry $registry) { @@ -87,7 +87,7 @@ class PostRepository extends AbstractRepository implements PostRepository Untuk `Comment`: -```php title="src/Infrastructure/Repository/CommentRepository.php" +```php title="src/Infrastructure/Repository/CommentRepositoryImpl.php" namespace App\Infrastructure\Repository; use App\Domain\Entity\Comment; @@ -99,7 +99,7 @@ use Rekalogika\Collections\ORM\AbstractRepository; /** * @extends AbstractRepository */ -class CommentRepository extends AbstractRepository implements CommentRepository +class CommentRepositoryImpl extends AbstractRepository implements CommentRepository { public function __construct(ManagerRegistry $registry) { diff --git a/docs/03-tutorial/02-web-frontend/index.md b/docs/03-tutorial/02-web-frontend/index.md new file mode 100644 index 0000000..63f900d --- /dev/null +++ b/docs/03-tutorial/02-web-frontend/index.md @@ -0,0 +1,7 @@ +--- +title: Web Frontend +--- + +import DocCardList from '@theme/DocCardList'; + + \ No newline at end of file