mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
14 lines
225 B
PHP
14 lines
225 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Validation;
|
|
|
|
interface DataAwareRule
|
|
{
|
|
/**
|
|
* Set the data under validation.
|
|
*
|
|
* @param array $data
|
|
* @return $this
|
|
*/
|
|
public function setData($data);
|
|
}
|