Skip to content

Commit 91bbf2a

Browse files
committed
Remove trailing whitespace
1 parent 256f4c1 commit 91bbf2a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doctrine.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@ Take a look at the previous example in more detail:
390390

391391
.. _doctrine-entity-manager:
392392

393-
* **line 13** The ``EntityManagerInterface $entityManager`` argument tells Symfony
394-
to :ref:`inject the Entity Manager service <services-constructor-injection>` into
393+
* **line 13** The ``EntityManagerInterface $entityManager`` argument tells Symfony
394+
to :ref:`inject the Entity Manager service <services-constructor-injection>` into
395395
the controller method. This object is responsible for saving objects to, and
396396
fetching objects from, the database.
397397

form/create_custom_field_type.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ to define, validate and process their values::
268268

269269
// optionally you can transform the given values for the options to
270270
// simplify the further processing of those options
271-
$resolver->setNormalizer('allowed_states', static function (Options $options, $states): ?array
271+
$resolver->setNormalizer('allowed_states', static function (Options $options, $states): ?array
272272
{
273273
if (null === $states) {
274274
return $states;

form/form_collections.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ Then create the controller:
355355
.. code-block:: javascript
356356
357357
// assets/controllers/form-collection_controller.js
358-
358+
359359
import { Controller } from '@hotwired/stimulus';
360360
361361
export default class extends Controller {
@@ -371,7 +371,7 @@ Then create the controller:
371371
const item = document.createElement('li');
372372
item.innerHTML = this.prototypeValue.replace(/__name__/g, this.indexValue);
373373
this.collectionContainerTarget.appendChild(item);
374-
this.indexValue++;
374+
this.indexValue++;
375375
}
376376
}
377377

0 commit comments

Comments
 (0)