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
12 changes: 0 additions & 12 deletions src/Illuminate/Database/Eloquent/Relations/Relation.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,18 +296,6 @@ public function getQuery()
return $this->query;
}

/**
* Get the base query builder driving the Eloquent builder.
*
* @deprecated Use toBase() instead
*
* @return \Illuminate\Database\Query\Builder
*/
public function getBaseQuery()
{
return $this->toBase();
}

/**
* Get a base query builder instance.
*
Expand Down

This file was deleted.

This file was deleted.

3 changes: 1 addition & 2 deletions src/Illuminate/Foundation/Testing/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ abstract class TestCase extends BaseTestCase
Concerns\InteractsWithExceptionHandling,
Concerns\InteractsWithSession,
Concerns\InteractsWithTime,
Concerns\InteractsWithViews,
Concerns\MocksApplicationServices;
Concerns\InteractsWithViews;

/**
* The Illuminate application instance.
Expand Down
1 change: 0 additions & 1 deletion src/Illuminate/Support/Facades/Notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* @method static void assertSentTo(mixed $notifiable, string|\Closure $notification, callable $callback = null)
* @method static void assertSentOnDemandTimes(string $notification, int $times = 1)
* @method static void assertSentToTimes(mixed $notifiable, string $notification, int $times = 1)
* @method static void assertTimesSent(int $expectedCount, string $notification)
* @method static void send(\Illuminate\Support\Collection|array|mixed $notifiables, $notification)
* @method static void sendNow(\Illuminate\Support\Collection|array|mixed $notifiables, $notification)
*
Expand Down
Loading