[Web] Update composer deps

This commit is contained in:
andryyy
2021-06-23 08:05:09 +02:00
parent d156a93a84
commit 5035e5bb42
136 changed files with 3020 additions and 805 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace Illuminate\Contracts\Broadcasting;
interface HasBroadcastChannel
{
/**
* Get the broadcast channel route definition that is associated with the given entity.
*
* @return string
*/
public function broadcastChannelRoute();
/**
* Get the broadcast channel name that is associated with the given entity.
*
* @return string
*/
public function broadcastChannel();
}

View File

@@ -7,8 +7,8 @@ interface SupportsPartialRelations
/**
* Indicate that the relation is a single result of a larger one-to-many relationship.
*
* @param \Closure|string|null $column
* @param string|null $relation
* @param string|null $column
* @param string|\Closure|null $aggregate
* @param string $relation
* @return $this
*/
@@ -20,4 +20,11 @@ interface SupportsPartialRelations
* @return bool
*/
public function isOneOfMany();
/**
* Get the one of many inner join subselect query builder instance.
*
* @return \Illuminate\Database\Eloquent\Builder|void
*/
public function getOneOfManySubQuery();
}

View File

@@ -0,0 +1,14 @@
<?php
namespace Illuminate\Contracts\Validation;
interface ValidatorAwareRule
{
/**
* Set the current validator.
*
* @param \Illuminate\Validation\Validator $validator
* @return $this
*/
public function setValidator($validator);
}