Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit48c1dca

Browse files
committed
Merge branch '3.4' into 4.0
* 3.4: doc(http_foundation.rst): Fix code error which used create() instead of constructor method. Follow the same code style in docblock annotations
2 parentsbb3e813 +00d696f commit48c1dca

File tree

15 files changed

+25
-25
lines changed

15 files changed

+25
-25
lines changed

‎best_practices/business-logic.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ looking for mapping information:
206206
* mappedBy="post",
207207
* orphanRemoval=true
208208
* )
209-
* @ORM\OrderBy({"publishedAt" ="ASC"})
209+
* @ORM\OrderBy({"publishedAt"="ASC"})
210210
*/
211211
private $comments;
212212

‎best_practices/controllers.rst‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ the entity manually. In our application, we have this situation in
192192
..code-block::php
193193
194194
/**
195-
* @Route("/comment/{postSlug}/new", name ="comment_new")
195+
* @Route("/comment/{postSlug}/new", name="comment_new")
196196
*/
197197
public function new(Request $request, $postSlug)
198198
{
@@ -218,8 +218,8 @@ flexible:
218218
use Symfony\Component\Routing\Annotation\Route;
219219
220220
/**
221-
* @Route("/comment/{postSlug}/new", name ="comment_new")
222-
* @ParamConverter("post", options={"mapping":{"postSlug":"slug"}})
221+
* @Route("/comment/{postSlug}/new", name="comment_new")
222+
* @ParamConverter("post", options={"mapping"={"postSlug"="slug"}})
223223
*/
224224
public function new(Request $request, Post $post)
225225
{

‎components/http_foundation.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ PHP callable that is able to create an instance of your ``Request`` class::
297297
array $server = array(),
298298
$content = null
299299
) {
300-
return SpecialRequest::create(
300+
returnnewSpecialRequest(
301301
$query,
302302
$request,
303303
$attributes,

‎reference/constraints/All.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ entry in that array:
3535
/**
3636
* @Assert\All({
3737
* @Assert\NotBlank,
38-
* @Assert\Length(min =5)
38+
* @Assert\Length(min=5)
3939
* })
4040
*/
4141
protected $favoriteColors = array();

‎reference/constraints/Choice.rst‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ If your valid choice list is simple, you can pass them in directly via the
5252
protected $city;
5353
5454
/**
55-
* @Assert\Choice(choices ={"fiction", "non-fiction"}, message ="Choose a valid genre.")
55+
* @Assert\Choice(choices={"fiction", "non-fiction"}, message="Choose a valid genre.")
5656
*/
5757
protected $genre;
5858
}
@@ -159,7 +159,7 @@ constraint.
159159
class Author
160160
{
161161
/**
162-
* @Assert\Choice(callback ="getGenres")
162+
* @Assert\Choice(callback="getGenres")
163163
*/
164164
protected $genre;
165165
}
@@ -224,7 +224,7 @@ you can pass the class name and the method as an array.
224224
class Author
225225
{
226226
/**
227-
* @Assert\Choice(callback ={"Util", "getGenres"})
227+
* @Assert\Choice(callback={"Util", "getGenres"})
228228
*/
229229
protected $genre;
230230
}

‎reference/constraints/IsTrue.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Then you can constrain this method with ``IsTrue``.
5555
protected $token;
5656
5757
/**
58-
* @Assert\IsTrue(message ="The token is invalid")
58+
* @Assert\IsTrue(message="The token is invalid")
5959
*/
6060
public function isTokenValid()
6161
{

‎reference/constraints/Luhn.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ will contain a credit card number.
3434
class Transaction
3535
{
3636
/**
37-
* @Assert\Luhn(message ="Please check your credit card number.")
37+
* @Assert\Luhn(message="Please check your credit card number.")
3838
*/
3939
protected $cardNumber;
4040
}

‎reference/constraints/Valid.rst‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ stores an ``Address`` instance in the ``$address`` property.
6464
6565
/**
6666
* @Assert\NotBlank
67-
* @Assert\Length(max =5)
67+
* @Assert\Length(max=5)
6868
*/
6969
protected $zipCode;
7070
}
@@ -78,7 +78,7 @@ stores an ``Address`` instance in the ``$address`` property.
7878
{
7979
/**
8080
* @Assert\NotBlank
81-
* @Assert\Length(min =4)
81+
* @Assert\Length(min=4)
8282
*/
8383
protected $firstName;
8484

‎routing.rst‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ To fix this, add a *requirement* that the ``{page}`` wildcard can *only* match n
161161
class BlogController extends Controller
162162
{
163163
/**
164-
* @Route("/blog/{page}", name="blog_list", requirements={"page":"\d+"})
164+
* @Route("/blog/{page}", name="blog_list", requirements={"page"="\d+"})
165165
*/
166166
public function list($page)
167167
{
@@ -260,7 +260,7 @@ So how can you make ``blog_list`` once again match when the user visits
260260
class BlogController extends Controller
261261
{
262262
/**
263-
* @Route("/blog/{page}", name="blog_list", requirements={"page":"\d+"})
263+
* @Route("/blog/{page}", name="blog_list", requirements={"page"="\d+"})
264264
*/
265265
public function list($page = 1)
266266
{

‎routing/optional_placeholders.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ This is done by including it in the ``defaults`` collection:
135135
// ...
136136
137137
/**
138-
* @Route("/blog/{page}", defaults={"page" =1})
138+
* @Route("/blog/{page}", defaults={"page"=1})
139139
*/
140140
public function index($page)
141141
{

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp