Skip to content

Commit 426f05b

Browse files
[10.x] Remove deprecations (#41136)
* Remove deprecations * Apply fixes from StyleCI * wip * Re-add dates property * wip * wip * wip Co-authored-by: StyleCI Bot <[email protected]>
1 parent 504ceac commit 426f05b

File tree

8 files changed

+4
-397
lines changed

8 files changed

+4
-397
lines changed

src/Illuminate/Database/Eloquent/Relations/Relation.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -296,18 +296,6 @@ public function getQuery()
296296
return $this->query;
297297
}
298298

299-
/**
300-
* Get the base query builder driving the Eloquent builder.
301-
*
302-
* @deprecated Use toBase() instead
303-
*
304-
* @return \Illuminate\Database\Query\Builder
305-
*/
306-
public function getBaseQuery()
307-
{
308-
return $this->toBase();
309-
}
310-
311299
/**
312300
* Get a base query builder instance.
313301
*

src/Illuminate/Foundation/Http/Exceptions/MaintenanceModeException.php

Lines changed: 0 additions & 58 deletions
This file was deleted.

src/Illuminate/Foundation/Testing/Concerns/MocksApplicationServices.php

Lines changed: 0 additions & 289 deletions
This file was deleted.

src/Illuminate/Foundation/Testing/TestCase.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ abstract class TestCase extends BaseTestCase
2727
Concerns\InteractsWithExceptionHandling,
2828
Concerns\InteractsWithSession,
2929
Concerns\InteractsWithTime,
30-
Concerns\InteractsWithViews,
31-
Concerns\MocksApplicationServices;
30+
Concerns\InteractsWithViews;
3231

3332
/**
3433
* The Illuminate application instance.

src/Illuminate/Support/Facades/Notification.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* @method static void assertSentTo(mixed $notifiable, string|\Closure $notification, callable $callback = null)
1818
* @method static void assertSentOnDemandTimes(string $notification, int $times = 1)
1919
* @method static void assertSentToTimes(mixed $notifiable, string $notification, int $times = 1)
20-
* @method static void assertTimesSent(int $expectedCount, string $notification)
2120
* @method static void send(\Illuminate\Support\Collection|array|mixed $notifiables, $notification)
2221
* @method static void sendNow(\Illuminate\Support\Collection|array|mixed $notifiables, $notification)
2322
*

0 commit comments

Comments
 (0)