Skip to content

Commit ef7a0df

Browse files
onairmarcEncoreBot
andauthored
Add Missing Deprecated DocBlocks (#38)
Co-authored-by: EncoreBot <[email protected]>
1 parent 6cc740b commit ef7a0df

File tree

5 files changed

+7
-12
lines changed

5 files changed

+7
-12
lines changed

.git-blame-ignore-revs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ f74b50a0c5a93e2042dd0899f67dc0d77d9f37b2
2222
0f7864d3a772c0ffd9fc82ef370856e74dae040b
2323
3c7aa0aeabda229e437d00339eabf9fe469fc67e
2424
789187af9e0c8772c7ee8ec5d0d601368b624bd0
25+
065611695e2356cd6dc8b5b5f6cfe8b51f720e1d

.github/workflows/_pullRequest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@ jobs:
6767
runParallel: true
6868

6969
AutoMerge:
70-
needs: [ StaticAnalysis ]
70+
needs: [ StaticAnalysis, Test ]
7171
name: Auto-Merge
7272
uses: EncoreDigitalGroup/ci-workflows/.github/workflows/github_dependabotAutoMerge.yml@v2

.idea/stdlib.iml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Objects/Arr.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22

33
namespace EncoreDigitalGroup\StdLib\Objects;
44

5-
/** @api */
6-
class Arr extends \EncoreDigitalGroup\StdLib\Support\Types\Arr {}
5+
use EncoreDigitalGroup\StdLib\Support\Types\Arr as BaseArray;
6+
7+
/** @deprecated Use EncoreDigitalGroup\StdLib\Support\Types\Arr instead. */
8+
class Arr extends BaseArray {}

src/Objects/ExitCode.php

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,5 @@
22

33
namespace EncoreDigitalGroup\StdLib\Objects;
44

5-
/**
6-
* @api
7-
*
8-
* @codeCoverageIgnore
9-
*
10-
* @deprecated Use EncoreDigitalGroup\StdLib\Objects\Filesystem\ExitCode instead.
11-
*/
5+
/** @deprecated Use EncoreDigitalGroup\StdLib\Objects\Filesystem\ExitCode instead. */
126
class ExitCode extends Filesystem\ExitCode {}

0 commit comments

Comments
 (0)