Skip to content

Commit dc8feb8

Browse files
committed
Merge branch '2.7' into 2.8
Conflicts: src/Symfony/Component/Console/Application.php src/Symfony/Component/Console/Command/Command.php src/Symfony/Component/Console/Formatter/OutputFormatter.php src/Symfony/Component/Console/Formatter/OutputFormatterStyle.php src/Symfony/Component/Console/Input/Input.php src/Symfony/Component/Console/Input/InputArgument.php src/Symfony/Component/Console/Input/InputDefinition.php src/Symfony/Component/Console/Input/InputOption.php src/Symfony/Component/Console/Output/OutputInterface.php src/Symfony/Component/Console/Output/StreamOutput.php src/Symfony/Component/CssSelector/CssSelector.php src/Symfony/Component/DependencyInjection/Container.php src/Symfony/Component/DependencyInjection/ContainerBuilder.php src/Symfony/Component/DependencyInjection/ContainerInterface.php src/Symfony/Component/DependencyInjection/Definition.php src/Symfony/Component/DependencyInjection/Scope.php src/Symfony/Component/DependencyInjection/ScopeInterface.php src/Symfony/Component/Validator/Constraints/Currency.php src/Symfony/Component/Validator/Constraints/CurrencyValidator.php
2 parents 03c39e9 + 4ce0d99 commit dc8feb8

File tree

1 file changed

+0
-42
lines changed

1 file changed

+0
-42
lines changed

Finder.php

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
* $finder = Finder::create()->files()->name('*.php')->in(__DIR__);
4040
*
4141
* @author Fabien Potencier <[email protected]>
42-
*
43-
* @api
4442
*/
4543
class Finder implements \IteratorAggregate, \Countable
4644
{
@@ -81,8 +79,6 @@ public function __construct()
8179
* Creates a new Finder.
8280
*
8381
* @return Finder A new Finder instance
84-
*
85-
* @api
8682
*/
8783
public static function create()
8884
{
@@ -197,8 +193,6 @@ public function getAdapters()
197193
* Restricts the matching to directories only.
198194
*
199195
* @return Finder The current Finder instance
200-
*
201-
* @api
202196
*/
203197
public function directories()
204198
{
@@ -211,8 +205,6 @@ public function directories()
211205
* Restricts the matching to files only.
212206
*
213207
* @return Finder The current Finder instance
214-
*
215-
* @api
216208
*/
217209
public function files()
218210
{
@@ -235,8 +227,6 @@ public function files()
235227
*
236228
* @see DepthRangeFilterIterator
237229
* @see NumberComparator
238-
*
239-
* @api
240230
*/
241231
public function depth($level)
242232
{
@@ -262,8 +252,6 @@ public function depth($level)
262252
* @see strtotime
263253
* @see DateRangeFilterIterator
264254
* @see DateComparator
265-
*
266-
* @api
267255
*/
268256
public function date($date)
269257
{
@@ -286,8 +274,6 @@ public function date($date)
286274
* @return Finder The current Finder instance
287275
*
288276
* @see FilenameFilterIterator
289-
*
290-
* @api
291277
*/
292278
public function name($pattern)
293279
{
@@ -304,8 +290,6 @@ public function name($pattern)
304290
* @return Finder The current Finder instance
305291
*
306292
* @see FilenameFilterIterator
307-
*
308-
* @api
309293
*/
310294
public function notName($pattern)
311295
{
@@ -415,8 +399,6 @@ public function notPath($pattern)
415399
*
416400
* @see SizeRangeFilterIterator
417401
* @see NumberComparator
418-
*
419-
* @api
420402
*/
421403
public function size($size)
422404
{
@@ -433,8 +415,6 @@ public function size($size)
433415
* @return Finder The current Finder instance
434416
*
435417
* @see ExcludeDirectoryFilterIterator
436-
*
437-
* @api
438418
*/
439419
public function exclude($dirs)
440420
{
@@ -451,8 +431,6 @@ public function exclude($dirs)
451431
* @return Finder The current Finder instance
452432
*
453433
* @see ExcludeDirectoryFilterIterator
454-
*
455-
* @api
456434
*/
457435
public function ignoreDotFiles($ignoreDotFiles)
458436
{
@@ -473,8 +451,6 @@ public function ignoreDotFiles($ignoreDotFiles)
473451
* @return Finder The current Finder instance
474452
*
475453
* @see ExcludeDirectoryFilterIterator
476-
*
477-
* @api
478454
*/
479455
public function ignoreVCS($ignoreVCS)
480456
{
@@ -515,8 +491,6 @@ public static function addVCSPattern($pattern)
515491
* @return Finder The current Finder instance
516492
*
517493
* @see SortableIterator
518-
*
519-
* @api
520494
*/
521495
public function sort(\Closure $closure)
522496
{
@@ -533,8 +507,6 @@ public function sort(\Closure $closure)
533507
* @return Finder The current Finder instance
534508
*
535509
* @see SortableIterator
536-
*
537-
* @api
538510
*/
539511
public function sortByName()
540512
{
@@ -551,8 +523,6 @@ public function sortByName()
551523
* @return Finder The current Finder instance
552524
*
553525
* @see SortableIterator
554-
*
555-
* @api
556526
*/
557527
public function sortByType()
558528
{
@@ -571,8 +541,6 @@ public function sortByType()
571541
* @return Finder The current Finder instance
572542
*
573543
* @see SortableIterator
574-
*
575-
* @api
576544
*/
577545
public function sortByAccessedTime()
578546
{
@@ -593,8 +561,6 @@ public function sortByAccessedTime()
593561
* @return Finder The current Finder instance
594562
*
595563
* @see SortableIterator
596-
*
597-
* @api
598564
*/
599565
public function sortByChangedTime()
600566
{
@@ -613,8 +579,6 @@ public function sortByChangedTime()
613579
* @return Finder The current Finder instance
614580
*
615581
* @see SortableIterator
616-
*
617-
* @api
618582
*/
619583
public function sortByModifiedTime()
620584
{
@@ -634,8 +598,6 @@ public function sortByModifiedTime()
634598
* @return Finder The current Finder instance
635599
*
636600
* @see CustomFilterIterator
637-
*
638-
* @api
639601
*/
640602
public function filter(\Closure $closure)
641603
{
@@ -648,8 +610,6 @@ public function filter(\Closure $closure)
648610
* Forces the following of symlinks.
649611
*
650612
* @return Finder The current Finder instance
651-
*
652-
* @api
653613
*/
654614
public function followLinks()
655615
{
@@ -682,8 +642,6 @@ public function ignoreUnreadableDirs($ignore = true)
682642
* @return Finder The current Finder instance
683643
*
684644
* @throws \InvalidArgumentException if one of the directories does not exist
685-
*
686-
* @api
687645
*/
688646
public function in($dirs)
689647
{

0 commit comments

Comments
 (0)