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/Events/NullDispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public function __construct(DispatcherContract $dispatcher)
*/
public function dispatch($event, $payload = [], $halt = false)
{
//
}

/**
Expand All @@ -48,6 +49,7 @@ public function dispatch($event, $payload = [], $halt = false)
*/
public function push($event, $payload = [])
{
//
}

/**
Expand All @@ -59,6 +61,7 @@ public function push($event, $payload = [])
*/
public function until($event, $payload = [])
{
//
}

/**
Expand Down
5 changes: 5 additions & 0 deletions src/Illuminate/Support/Testing/Fakes/BatchRepositoryFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public function get($limit, $before)
*/
public function find(string $batchId)
{
//
}

/**
Expand Down Expand Up @@ -68,6 +69,7 @@ public function store(PendingBatch $batch)
*/
public function incrementTotalJobs(string $batchId, int $amount)
{
//
}

/**
Expand Down Expand Up @@ -102,6 +104,7 @@ public function incrementFailedJobs(string $batchId, string $jobId)
*/
public function markAsFinished(string $batchId)
{
//
}

/**
Expand All @@ -112,6 +115,7 @@ public function markAsFinished(string $batchId)
*/
public function cancel(string $batchId)
{
//
}

/**
Expand All @@ -122,6 +126,7 @@ public function cancel(string $batchId)
*/
public function delete(string $batchId)
{
//
}

/**
Expand Down
1 change: 1 addition & 0 deletions src/Illuminate/Support/Testing/Fakes/BusFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,7 @@ public function chain($jobs)
*/
public function findBatch(string $batchId)
{
//
}

/**
Expand Down
3 changes: 3 additions & 0 deletions tests/Container/ContainerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -577,20 +577,23 @@ class CircularAStub
{
public function __construct(CircularBStub $b)
{
//
}
}

class CircularBStub
{
public function __construct(CircularCStub $c)
{
//
}
}

class CircularCStub
{
public function __construct(CircularAStub $a)
{
//
}
}

Expand Down
1 change: 1 addition & 0 deletions tests/Integration/Queue/CustomPayloadTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,6 @@ class MyJob implements ShouldQueue

public function handle()
{
//
}
}
4 changes: 4 additions & 0 deletions tests/Support/SupportReflectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ class B extends A
{
public function f(parent $x)
{
//
}
}

Expand All @@ -92,6 +93,7 @@ class C
{
public function f(A|Model $x)
{
//
}
}'
);
Expand All @@ -101,12 +103,14 @@ class TestClassWithCall
{
public function __call($method, $parameters)
{
//
}
}

class TestClassWithCallStatic
{
public static function __callStatic($method, $parameters)
{
//
}
}