PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Validation
/
Rules
<?php namespace Illuminate\Validation\Rules; class ImageFile extends File { /** * Create a new image file rule instance. * * @return void */ public function __construct() { $this->rules('image'); } /** * The dimension constraints for the uploaded file. * * @param \Illuminate\Validation\Rules\Dimensions $dimensions */ public function dimensions($dimensions) { $this->rules($dimensions); return $this; } }
[-] File.php
[edit]
[+]
..
[-] ImageFile.php
[edit]
[-] Exists.php
[edit]
[-] Enum.php
[edit]
[-] In.php
[edit]
[-] Dimensions.php
[edit]
[-] DatabaseRule.php
[edit]
[-] Unique.php
[edit]
[-] ExcludeIf.php
[edit]
[-] NotIn.php
[edit]
[-] RequiredIf.php
[edit]
[-] Password.php
[edit]
[-] ProhibitedIf.php
[edit]