Skip to content
Snippets Groups Projects
Select Git revision
  • 7f83c187f43c2053936e3a830218a6d6e7ba06df
  • main default protected
  • 1.1.6
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.1
  • 1.0.0
11 results

Reporting and NEL

Blame
  • InvalidSettingValue.php 336 B
    <?php
    
    namespace WPDesk\ActivationReminder\Composer;
    
    class InvalidSettingValue extends \RuntimeException {
    
    	public function __construct( $field, $value ) {
    		$message = sprintf( 'Invalid Activation Reminder setting value for field %1$s: %2$s!', $field, isset( $value ) ? $value : ' not set' );
    		parent::__construct( $message );
    	}
    
    }