Skip to content
Snippets Groups Projects

Feature/configuration

Merged Krzysztof Dyszczyk requested to merge feature/configuration into feature/popup
6 files
+ 158
70
Compare changes
  • Side-by-side
  • Inline

Files

 
<?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 );
 
}
 
 
}
 
\ No newline at end of file
Loading