Skip to content
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"fakerphp/faker": "^1.24",
"guzzlehttp/promises": "^2.0.3",
"guzzlehttp/psr7": "^2.4",
"laravel/pint": "^1.18",
"laravel/pint": "^1.25",
"league/flysystem-aws-s3-v3": "^3.25.1",
"league/flysystem-ftp": "^3.25.1",
"league/flysystem-path-prefixing": "^3.25.1",
Expand Down
2 changes: 0 additions & 2 deletions src/Illuminate/Broadcasting/BroadcastController.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class BroadcastController extends Controller
/**
* Authenticate the request for channel access.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function authenticate(Request $request)
Expand All @@ -29,7 +28,6 @@ public function authenticate(Request $request)
*
* See: https://pusher.com/docs/channels/server_api/authenticating-users/#user-authentication.
*
* @param \Illuminate\Http\Request $request
* @return array|null
*
* @throws \Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException
Expand Down
4 changes: 0 additions & 4 deletions src/Illuminate/Broadcasting/BroadcastEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public function __construct($event)
/**
* Handle the queued job.
*
* @param \Illuminate\Contracts\Broadcasting\Factory $manager
* @return void
*/
public function handle(BroadcastingFactory $manager)
Expand Down Expand Up @@ -187,9 +186,6 @@ public function middleware(): array

/**
* Handle a job failure.
*
* @param \Throwable|null $e
* @return void
*/
public function failed(?Throwable $e = null): void
{
Expand Down
14 changes: 0 additions & 14 deletions src/Illuminate/Broadcasting/BroadcastManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public function __construct($app)
/**
* Register the routes for handling broadcast channel authentication and sockets.
*
* @param array|null $attributes
* @return void
*/
public function routes(?array $attributes = null)
Expand All @@ -85,7 +84,6 @@ public function routes(?array $attributes = null)
/**
* Register the routes for handling broadcast user authentication.
*
* @param array|null $attributes
* @return void
*/
public function userRoutes(?array $attributes = null)
Expand All @@ -109,7 +107,6 @@ public function userRoutes(?array $attributes = null)
*
* Alias of "routes" method.
*
* @param array|null $attributes
* @return void
*/
public function channelRoutes(?array $attributes = null)
Expand Down Expand Up @@ -304,7 +301,6 @@ protected function resolve($name)
/**
* Call a custom driver creator.
*
* @param array $config
* @return mixed
*/
protected function callCustomCreator(array $config)
Expand All @@ -315,7 +311,6 @@ protected function callCustomCreator(array $config)
/**
* Create an instance of the driver.
*
* @param array $config
* @return \Illuminate\Contracts\Broadcasting\Broadcaster
*/
protected function createReverbDriver(array $config)
Expand All @@ -326,7 +321,6 @@ protected function createReverbDriver(array $config)
/**
* Create an instance of the driver.
*
* @param array $config
* @return \Illuminate\Contracts\Broadcasting\Broadcaster
*/
protected function createPusherDriver(array $config)
Expand All @@ -337,7 +331,6 @@ protected function createPusherDriver(array $config)
/**
* Get a Pusher instance for the given configuration.
*
* @param array $config
* @return \Pusher\Pusher
*/
public function pusher(array $config)
Expand Down Expand Up @@ -371,7 +364,6 @@ public function pusher(array $config)
/**
* Create an instance of the driver.
*
* @param array $config
* @return \Illuminate\Contracts\Broadcasting\Broadcaster
*/
protected function createAblyDriver(array $config)
Expand All @@ -382,7 +374,6 @@ protected function createAblyDriver(array $config)
/**
* Get an Ably instance for the given configuration.
*
* @param array $config
* @return \Ably\AblyRest
*/
public function ably(array $config)
Expand All @@ -393,7 +384,6 @@ public function ably(array $config)
/**
* Create an instance of the driver.
*
* @param array $config
* @return \Illuminate\Contracts\Broadcasting\Broadcaster
*/
protected function createRedisDriver(array $config)
Expand All @@ -407,7 +397,6 @@ protected function createRedisDriver(array $config)
/**
* Create an instance of the driver.
*
* @param array $config
* @return \Illuminate\Contracts\Broadcasting\Broadcaster
*/
protected function createLogDriver(array $config)
Expand All @@ -420,7 +409,6 @@ protected function createLogDriver(array $config)
/**
* Create an instance of the driver.
*
* @param array $config
* @return \Illuminate\Contracts\Broadcasting\Broadcaster
*/
protected function createNullDriver(array $config)
Expand Down Expand Up @@ -481,7 +469,6 @@ public function purge($name = null)
* Register a custom driver creator Closure.
*
* @param string $driver
* @param \Closure $callback
* @return $this
*/
public function extend($driver, Closure $callback)
Expand All @@ -494,7 +481,6 @@ public function extend($driver, Closure $callback)
/**
* Execute the given callback using "rescue" if possible.
*
* @param \Closure $callback
* @return mixed
*/
protected function rescue(Closure $callback)
Expand Down
6 changes: 0 additions & 6 deletions src/Illuminate/Broadcasting/Broadcasters/AblyBroadcaster.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ class AblyBroadcaster extends Broadcaster

/**
* Create a new broadcaster instance.
*
* @param \Ably\AblyRest $ably
*/
public function __construct(AblyRest $ably)
{
Expand Down Expand Up @@ -115,9 +113,7 @@ public function generateAblySignature($channelName, $socketId, $userData = null)
/**
* Broadcast the given event.
*
* @param array $channels
* @param string $event
* @param array $payload
* @return void
*
* @throws \Illuminate\Broadcasting\BroadcastException
Expand All @@ -141,7 +137,6 @@ public function broadcast(array $channels, $event, array $payload = [])
* Build an Ably message object for broadcasting.
*
* @param string $event
* @param array $payload
* @return \Ably\Models\Message
*/
protected function buildAblyMessage($event, array $payload = [])
Expand Down Expand Up @@ -184,7 +179,6 @@ public function normalizeChannelName($channel)
/**
* Format the channel array into an array of strings.
*
* @param array $channels
* @return array
*/
protected function formatChannels(array $channels)
Expand Down
2 changes: 0 additions & 2 deletions src/Illuminate/Broadcasting/Broadcasters/Broadcaster.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ public function resolveAuthenticatedUser($request)
*
* See: https://pusher.com/docs/channels/library_auth_reference/auth-signatures/#user-authentication.
*
* @param \Closure $callback
* @return void
*/
public function resolveAuthenticatedUserUsing(Closure $callback)
Expand Down Expand Up @@ -280,7 +279,6 @@ protected function isImplicitlyBindable($key, $parameter)
/**
* Format the channel array into an array of strings.
*
* @param array $channels
* @return array
*/
protected function formatChannels(array $channels)
Expand Down
2 changes: 0 additions & 2 deletions src/Illuminate/Broadcasting/Broadcasters/LogBroadcaster.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ class LogBroadcaster extends Broadcaster

/**
* Create a new broadcaster instance.
*
* @param \Psr\Log\LoggerInterface $logger
*/
public function __construct(LoggerInterface $logger)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ class PusherBroadcaster extends Broadcaster

/**
* Create a new broadcaster instance.
*
* @param \Pusher\Pusher $pusher
*/
public function __construct(Pusher $pusher)
{
Expand Down Expand Up @@ -140,9 +138,7 @@ protected function decodePusherResponse($request, $response)
/**
* Broadcast the given event.
*
* @param array $channels
* @param string $event
* @param array $payload
* @return void
*
* @throws \Illuminate\Broadcasting\BroadcastException
Expand Down
4 changes: 0 additions & 4 deletions src/Illuminate/Broadcasting/Broadcasters/RedisBroadcaster.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ class RedisBroadcaster extends Broadcaster
/**
* Create a new broadcaster instance.
*
* @param \Illuminate\Contracts\Redis\Factory $redis
* @param string|null $connection
* @param string $prefix
*/
Expand Down Expand Up @@ -107,9 +106,7 @@ public function validAuthenticationResponse($request, $result)
/**
* Broadcast the given event.
*
* @param array $channels
* @param string $event
* @param array $payload
* @return void
*
* @throws \Illuminate\Broadcasting\BroadcastException
Expand Down Expand Up @@ -180,7 +177,6 @@ protected function broadcastMultipleChannelsScript()
/**
* Format the channel array into an array of strings.
*
* @param array $channels
* @return array
*/
protected function formatChannels(array $channels)
Expand Down
1 change: 0 additions & 1 deletion src/Illuminate/Broadcasting/PendingBroadcast.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ class PendingBroadcast
/**
* Create a new pending broadcast instance.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @param mixed $event
*/
public function __construct(Dispatcher $events, $event)
Expand Down
1 change: 0 additions & 1 deletion src/Illuminate/Cache/ApcStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ class ApcStore extends TaggableStore
/**
* Create a new APC store.
*
* @param \Illuminate\Cache\ApcWrapper $apc
* @param string $prefix
*/
public function __construct(ApcWrapper $apc, $prefix = '')
Expand Down
15 changes: 0 additions & 15 deletions src/Illuminate/Cache/CacheManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ public function resolve($name)
/**
* Build a cache repository with the given configuration.
*
* @param array $config
* @return \Illuminate\Cache\Repository
*/
public function build(array $config)
Expand All @@ -137,7 +136,6 @@ public function build(array $config)
/**
* Call a custom driver creator.
*
* @param array $config
* @return mixed
*/
protected function callCustomCreator(array $config)
Expand All @@ -148,7 +146,6 @@ protected function callCustomCreator(array $config)
/**
* Create an instance of the APC cache driver.
*
* @param array $config
* @return \Illuminate\Cache\Repository
*/
protected function createApcDriver(array $config)
Expand All @@ -161,7 +158,6 @@ protected function createApcDriver(array $config)
/**
* Create an instance of the array cache driver.
*
* @param array $config
* @return \Illuminate\Cache\Repository
*/
protected function createArrayDriver(array $config)
Expand All @@ -172,7 +168,6 @@ protected function createArrayDriver(array $config)
/**
* Create an instance of the database cache driver.
*
* @param array $config
* @return \Illuminate\Cache\Repository
*/
protected function createDatabaseDriver(array $config)
Expand All @@ -199,7 +194,6 @@ protected function createDatabaseDriver(array $config)
/**
* Create an instance of the DynamoDB cache driver.
*
* @param array $config
* @return \Illuminate\Cache\Repository
*/
protected function createDynamodbDriver(array $config)
Expand Down Expand Up @@ -248,7 +242,6 @@ protected function newDynamodbClient(array $config)
/**
* Create an instance of the file cache driver.
*
* @param array $config
* @return \Illuminate\Cache\Repository
*/
protected function createFileDriver(array $config)
Expand All @@ -263,7 +256,6 @@ protected function createFileDriver(array $config)
/**
* Create an instance of the Memcached cache driver.
*
* @param array $config
* @return \Illuminate\Cache\Repository
*/
protected function createMemcachedDriver(array $config)
Expand Down Expand Up @@ -293,7 +285,6 @@ protected function createNullDriver()
/**
* Create an instance of the Redis cache driver.
*
* @param array $config
* @return \Illuminate\Cache\Repository
*/
protected function createRedisDriver(array $config)
Expand All @@ -313,7 +304,6 @@ protected function createRedisDriver(array $config)
/**
* Create an instance of the session cache driver.
*
* @param array $config
* @return \Illuminate\Cache\Repository
*/
protected function createSessionDriver(array $config)
Expand Down Expand Up @@ -348,8 +338,6 @@ protected function getSession()
/**
* Create a new cache repository with the given implementation.
*
* @param \Illuminate\Contracts\Cache\Store $store
* @param array $config
* @return \Illuminate\Cache\Repository
*/
public function repository(Store $store, array $config = [])
Expand All @@ -364,7 +352,6 @@ public function repository(Store $store, array $config = [])
/**
* Set the event dispatcher on the given repository instance.
*
* @param \Illuminate\Cache\Repository $repository
* @return void
*/
protected function setEventDispatcher(Repository $repository)
Expand All @@ -391,7 +378,6 @@ public function refreshEventDispatcher()
/**
* Get the cache prefix.
*
* @param array $config
* @return string
*/
protected function getPrefix(array $config)
Expand Down Expand Up @@ -471,7 +457,6 @@ public function purge($name = null)
* Register a custom driver creator Closure.
*
* @param string $driver
* @param \Closure $callback
*
* @param-closure-this $this $callback
*
Expand Down
3 changes: 0 additions & 3 deletions src/Illuminate/Cache/Console/ClearCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ class ClearCommand extends Command

/**
* Create a new cache clear command instance.
*
* @param \Illuminate\Cache\CacheManager $cache
* @param \Illuminate\Filesystem\Filesystem $files
*/
public function __construct(CacheManager $cache, Filesystem $files)
{
Expand Down
Loading
Loading