Skip to content
Snippets Groups Projects
Select Git revision
  • 21196fe70128d856cd853ba1ac9aff64df82cf4a
  • master default protected
  • 1.6.4
  • 1.6.3
  • 1.6.2
  • 1.6.1
  • 1.6.0
  • 1.5.0
  • 1.4.0
  • 1.3.1
  • 1.3.0
  • 1.3.0-beta1
  • 1.2.1
  • 1.2.0
  • 1.2.0-beta5
  • 1.2.0-beta4
  • 1.2.0-beta3
  • 1.2.0-beta2
  • 1.2.0-beta1
  • 1.1.0
  • 1.0.0
21 results

html-text-petition.php

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 );
    	}
    
    }