updated commit

This commit is contained in:
sujitprasad
2015-05-08 16:25:40 +05:30
parent ef834c58dc
commit 267467725e
73 changed files with 2748 additions and 2938 deletions

View File

@@ -1,7 +1,13 @@
<?php namespace App\Http\Requests;
<?php
namespace App\Http\Requests;
use App\Http\Requests\Request;
/**
* OrganizationUpdate
*
* @package Request
* @author Ladybird <info@ladybirdweb.com>
*/
class OrganizationUpdate extends Request {
/**
@@ -9,8 +15,7 @@ class OrganizationUpdate extends Request {
*
* @return bool
*/
public function authorize()
{
public function authorize() {
return true;
}
@@ -19,12 +24,11 @@ class OrganizationUpdate extends Request {
*
* @return array
*/
public function rules()
{
public function rules() {
return [
'website' => 'url',
'phone' => 'size:10'
'website' => 'url',
'phone' => 'size:10',
];
}