Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subversal
/
video
/
wp-content
/
plugins
/
wordpress-seo
/
vendor
/
yoast
/
whip
/
src
/
Exceptions
:
InvalidOperatorType.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Yoast\WHIPv2\Exceptions; use Exception; /** * Class InvalidOperatorType. */ class InvalidOperatorType extends Exception { /** * InvalidOperatorType constructor. * * @param string $value Invalid operator. * @param string[] $validOperators Valid operators. */ public function __construct( $value, $validOperators = array( '=', '==', '===', '<', '>', '<=', '>=' ) ) { parent::__construct( \sprintf( 'Invalid operator of %s used. Please use one of the following operators: %s', $value, \implode( ', ', $validOperators ) ) ); } }