-
-
Notifications
You must be signed in to change notification settings - Fork 843
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the NelmioApiDocBundle package. | ||
* | ||
* (c) Nelmio | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Nelmio\ApiDocBundle\Annotation; | ||
|
||
trigger_deprecation('nelmio/api-doc-bundle', '4.32.3', 'The "%s" class is deprecated and will be removed in 4.0. Use the \Nelmio\ApiDocBundle\Attribute\Areas attribute instead.', Areas::class); | ||
|
||
/** | ||
* @Annotation | ||
*/ | ||
#[\Attribute(\Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD)] | ||
Check failure on line 19 in src/Annotation/Areas.php
|
||
final class Areas extends \Nelmio\ApiDocBundle\Attribute\Areas | ||
{ | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the NelmioApiDocBundle package. | ||
* | ||
* (c) Nelmio | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Nelmio\ApiDocBundle\Annotation; | ||
|
||
trigger_deprecation('nelmio/api-doc-bundle', '4.32.3', 'The "%s" class is deprecated and will be removed in 4.0. Use the \Nelmio\ApiDocBundle\Attribute\Model attribute instead.', Model::class); | ||
|
||
/** | ||
* @Annotation | ||
*/ | ||
#[\Attribute(\Attribute::TARGET_METHOD)] | ||
Check failure on line 19 in src/Annotation/Model.php
|
||
final class Model extends \Nelmio\ApiDocBundle\Attribute\Model | ||
{ | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the NelmioApiDocBundle package. | ||
* | ||
* (c) Nelmio | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Nelmio\ApiDocBundle\Annotation; | ||
|
||
trigger_deprecation('nelmio/api-doc-bundle', '4.32.3', 'The "%s" class is deprecated and will be removed in 4.0. Use the \Nelmio\ApiDocBundle\Attribute\Operation attribute instead.', Operation::class); | ||
|
||
/** | ||
* @Annotation | ||
*/ | ||
#[\Attribute(\Attribute::TARGET_METHOD)] | ||
Check failure on line 19 in src/Annotation/Operation.php
|
||
class Operation extends \Nelmio\ApiDocBundle\Attribute\Operation | ||
{ | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the NelmioApiDocBundle package. | ||
* | ||
* (c) Nelmio | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Nelmio\ApiDocBundle\Annotation; | ||
|
||
trigger_deprecation('nelmio/api-doc-bundle', '4.32.3', 'The "%s" class is deprecated and will be removed in 4.0. Use the \Nelmio\ApiDocBundle\Attribute\Security attribute instead.', Security::class); | ||
|
||
/** | ||
* @Annotation | ||
*/ | ||
#[\Attribute(\Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)] | ||
Check failure on line 19 in src/Annotation/Security.php
|
||
class Security extends \Nelmio\ApiDocBundle\Attribute\Security | ||
{ | ||
} |