Skip to content
Snippets Groups Projects

feature(popup): popup

Merged Krzysztof Dyszczyk requested to merge feature/popup into main
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