Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Illuminate/Support/Arr.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

use Illuminate\Collections\Arr as BaseArr;

/**
* @deprecated Will be removed in a future Laravel version.
*/
class Arr extends BaseArr
{
//
Expand Down
3 changes: 3 additions & 0 deletions src/Illuminate/Support/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

use Illuminate\Collections\Collection as BaseCollection;

/**
* @deprecated Will be removed in a future Laravel version.
*/
class Collection extends BaseCollection
{
/**
Expand Down
3 changes: 3 additions & 0 deletions src/Illuminate/Support/Enumerable.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

use Illuminate\Collections\Enumerable as BaseEnumerable;

/**
* @deprecated Will be removed in a future Laravel version.
*/
interface Enumerable extends BaseEnumerable
{
//
Expand Down
3 changes: 3 additions & 0 deletions src/Illuminate/Support/LazyCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
use Closure;
use Illuminate\Collections\LazyCollection as BaseLazyCollection;

/**
* @deprecated Will be removed in a future Laravel version.
*/
class LazyCollection extends BaseLazyCollection
{
/**
Expand Down
3 changes: 3 additions & 0 deletions src/Illuminate/Support/Traits/Macroable.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

use Illuminate\Macroable\Macroable as BaseMacroable;

/**
* @deprecated Will be removed in a future Laravel version.
*/
trait Macroable
{
use BaseMacroable;
Expand Down