1. Go to this page and download the library: Download respect/assertion library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
respect / assertion example snippets
// will throw an exception => 1 must be equals 5
Assert::equals(1, 5);
// will throw an exception => "string" must be of type integer
Assert::intType('string');
// will not throw an exception
Assert::odd(5);
// will throw an exception => I was expecting 5, but you gave be 1
Assert::equals(1, 5, 'I was expecting {{compareTo}}, but you gave be {{input}}');
// will throw the defined DomainException
Assert::between(42, 1, 10, new DomainException('Something is not right'));
// will throw an exception => I expected a positive number
Assert::that(-1)
->intVal('The number {{input}} must be an integer')
->positive('The number must be positive')
->lessThan(4);
// will throw an exception => The number must be valid
Assert::that(0, new DomainException('The number must be valid'))
->positive()
->greaterThan(5);
// will throw an exception => But it is not greater than 5, though
Assert::that(3, 'The number must be valid')
->positive()
->greaterThan(5, 'But it is not greater than 5, though');
// will throw an exception => 3 (the length of the input) must equal 4
Assert::that(['names' => ['Respect', 'Assertion'], 'options' => [1, 2, 3]])
->all()->arrayType()
->key('names')->allStringType()
->key('options')->lengthEquals(4);
// will throw an exception => "3" (like all items of the input) must be of type integer
Assert::allIntType([1, 2, '3']);
// will throw an exception => 3 (like all items of the input) must be between 1 and 2
Assert::thatAll([1, 2, 2, 1, 3])
->intVal()
->between(1, 2);
// will throw an exception => 5 (the length of the input) must be less than 4
Assert::that([1, 2, 2, 1, 3])
->arrayType()
->notEmpty()
->lengthGreaterThan(3)
->all()->intVal()->between(1, 2);
// will throw an exception => 42 must be negative
Assert::nullOrNegative(42);
// will not throw an exception
Assert::nullOrNegative(null);
// will throw an exception => 5 must be between 1 and 4
Assert::nullOrBetween(5, 1, 4);
// will not throw an exception
Assert::nullOrBetween(null, 1, 4);
// will throw an exception => 6 must be a valid prime number
Assert::thatNullOr(6)
->positive()
->between(1, 10)
->primeNumber();
// will not throw an exception
Assert::thatNullOr(null)
->positive()
->between(1, 10)
->primeNumber();
// will throw an exception => 2 must not be an even number
Assert::notEven(2);
// will throw an exception => 3 must not be in `{ 1, 2, 3, 4 }`
Assert::notIn(3, [1, 2, 3, 4]);
// will throw an exception => "1" must not be positive
Assert::thatNot('1')
->intType()
->positive()
->between(1, 3);
// will throw an exception => "1" must not be positive
Assert::that('1')
->not()->intType()->positive()->between(1, 3);
// will throw an exception => bar must be present
Assert::keyPresent(['foo' => true], 'bar');
// will throw an exception => bar must not be present
Assert::keyNotPresent(['bar' => 2], 'bar');
// will throw an exception => foo must equal 3
Assert::keyEquals(['foo' => 2], 'foo', 3);
// will throw an exception => bar must be negative
Assert::keyNegative(['bar' => 2], 'bar');
// will throw an exception => bar must not be of type integer
Assert::keyNotIntType(['bar' => 2], 'bar');
// will throw an exception => baz must be present
Assert::keyNegative(['foo' => 2], 'baz');
// will throw an exception => foo must exist
Assert::keyExists(['foo' => '/path/to/file.txt'], 'foo');
// will throw an exception => 9 (the length of the input) must be less than 4
Assert::thatKey(['foo' => 'my-string'], 'foo')
->stringType()
->startsWith('my-')
->lengthLessThan(4);
// will throw an exception => bar must be less than 40
Assert::that(['foo' => 'my-string', 'bar' => 42])
->arrayType()
->key('foo')->stringType()->startsWith('my-')
->key('bar')->intType()->positive()->lessThan(40);
$input = new stdClass();
$input->foo = 1;
// will throw an exception => Attribute bar must be present
Assert::propertyPresent($input, 'bar');
// will throw an exception => Attribute foo must not be present
Assert::propertyNotPresent($input, 'foo');
// will throw an exception => foo must equal 3
Assert::propertyEquals($input, 'foo', 3);
// will throw an exception => foo must be negative
Assert::propertyNegative($input, 'foo');
// will throw an exception => foo must not be of type integer
Assert::propertyNotIntType($input, 'foo');
// will throw an exception => Attribute baz must be present
Assert::propertyNegative($input, 'baz');
// will throw an exception => foo must exists
Assert::propertyExists($input, 'foo');
// will throw an exception => foo must be greater than 5
Assert::thatProperty($input, 'foo')
->intType()
->positive()
->greaterThan(5);
// will throw an exception => foo must be greater than 5
Assert::that($input)
->instance(stdClass::class)
->property('foo')->intType()->positive()->greaterThan(5);
// will throw an exception => 6 (the length of the input) must be between 10 and 15
Assert::lengthBetween('string', 10, 15);
// will throw an exception => 4 (the length of the input) must be an odd number
Assert::lengthOdd([1, 2, 3, 4]);
// will throw an exception => 3 (the length of the input) must be an even number
Assert::lengthEven(new ArrayObject([1, 2, 3]));
// will throw an exception => 2 (the length of the input) must not be multiple of 2
Assert::lengthNotMultiple([1, 2], 2);
// will throw an exception => 3 (the maximum of the input) must be between 5 and 10
Assert::maxBetween([1, 2, 3], 5, 10);
// will throw an exception => 3 (the maximum of the input) must be an even number
Assert::maxEven([1, 2, 3]);
// will throw an exception => 60 (the maximum of the input) must be a valid perfect square
Assert::maxPerfectSquare(new ArrayObject([45, 60, 20]));
// will throw an exception => 23 (the maximum of the input) must not be positive
Assert::maxNotPositive([23, 7, 20]);
// will throw an exception => 1 (the minimum of the input) must be between 5 and 10
Assert::minBetween([1, 2, 3], 5, 10);
// will throw an exception => 1 (the minimum of the input) must be an even number
Assert::minEven([1, 2, 3]);
// will throw an exception => 20 (the minimum of the input) must be a valid perfect square
Assert::minPerfectSquare(new ArrayObject([45, 60, 20]));
// will throw an exception => 7 (the minimum of the input) must not be positive
Assert::minNotPositive([23, 7, 20]);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.