Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.3] Make new validation Rule class macroable #16028

Merged
merged 1 commit into from
Oct 20, 2016
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Illuminate/Validation/Rule.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@

namespace Illuminate\Validation;

use Illuminate\Support\Traits\Macroable;

class Rule
{
use Macroable;

/**
* Get a dimensions constraint builder instance.
*
Expand Down
16 changes: 16 additions & 0 deletions tests/Validation/ValidationRuleTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

use Illuminate\Validation\Rule;

class ValidationRuleTest extends PHPUnit_Framework_TestCase
{
public function testMacroable()
{
// phone macro : validate a phone number
Rule::macro('phone', function () {
return 'regex:/^([0-9\s\-\+\(\)]*)$/';
});
$c = Rule::phone();
$this->assertSame('regex:/^([0-9\s\-\+\(\)]*)$/', $c);
}
}