Skip to content
Snippets Groups Projects

Feature/no dev

Merged Krzysztof Dyszczyk requested to merge feature/no-dev into main
3 files
+ 161
0
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$a: %2$s!', $field, isset( $value ) ? $value : ' not set' );
parent::__construct( $message );
}
}
\ No newline at end of file
Loading