Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
priyadi committed Jul 21, 2024
1 parent 773beff commit a8efac4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/03-tutorial/01-domain/05-repository.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -72,7 +72,7 @@ use Rekalogika\Collections\ORM\AbstractRepository;
/**
* @extends AbstractRepository<string,Post>
*/
class PostRepository extends AbstractRepository implements PostRepository
class PostRepositoryImpl extends AbstractRepository implements PostRepository
{
public function __construct(ManagerRegistry $registry)
{
Expand All @@ -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;
Expand All @@ -99,7 +99,7 @@ use Rekalogika\Collections\ORM\AbstractRepository;
/**
* @extends AbstractRepository<string,Comment>
*/
class CommentRepository extends AbstractRepository implements CommentRepository
class CommentRepositoryImpl extends AbstractRepository implements CommentRepository
{
public function __construct(ManagerRegistry $registry)
{
Expand Down
7 changes: 7 additions & 0 deletions docs/03-tutorial/02-web-frontend/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Web Frontend
---

import DocCardList from '@theme/DocCardList';

<!-- <DocCardList /> -->

0 comments on commit a8efac4

Please sign in to comment.