Skip to content

Commit 5e35252

Browse files
committed
docs(guide): remove titles
1 parent c2be409 commit 5e35252

8 files changed

+0
-12
lines changed

docs/guides/declare-a-resource.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// tags: design
88
// ---
99

10-
// # Declare a Resource
1110
// This class represents an API resource
1211

1312
namespace App\ApiResource {

docs/guides/doctrine-entity-as-resource.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
// tags: doctrine
77
// executable: true
88
// ---
9-
10-
// # API Resource on a Doctrine Entity.
119
//
1210
// API Platform is compatible with [Doctrine ORM](https://www.doctrine-project.org), all we need is to declare an
1311

docs/guides/extend-openapi-documentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// tags: openapi, expert
88
// ---
99

10-
// # Extend OpenAPI Documentation
1110
namespace App\ApiResource {
1211
use ApiPlatform\Metadata\Post;
1312
use ApiPlatform\OpenApi\Model\Operation;

docs/guides/handle-links.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
// executable: true
88
// ---
99

10-
// # Handle links
11-
//
1210
// When using subresources with doctrine, API Platform tries to handle your links,
1311
// and the algorithm sometimes overcomplicates SQL queries.
1412

docs/guides/hook-a-persistence-layer-with-a-processor.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
// tags: design
88
// ---
99

10-
// # Hook a Persistence Layer with a Processor
11-
1210
namespace App\ApiResource {
1311
use ApiPlatform\Metadata\ApiResource;
1412
use App\State\BookProcessor;

docs/guides/provide-the-resource-state.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// tags: design, state
88
// ---
99

10-
// # Provide the Resource State
1110
// Our model is the same then in the previous guide ([Declare a Resource](/playground/declare-a-resource). API Platform will declare
1211
// CRUD operations if we don't declare them.
1312

docs/guides/subresource.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
// executable: true
88
// ---
99

10-
// # Subresource
11-
//
1210
// In API Platform, a subresource is an alternate way to reach a Resource.
1311

1412
namespace App\Entity {

docs/guides/validate-incoming-data.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// tags: validation
88
// ---
99

10-
// # Validing incoming data
1110
// When processing the incoming request, when creating or updating content, API-Platform will validate the
1211
// incoming content. It will use the [Symfony's validator](https://symfony.com/doc/current/validation.html).
1312
//

0 commit comments

Comments
 (0)