Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wp-wpdesk-activation-reminder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
Library
wp-wpdesk-activation-reminder
Merge requests
!4
Feature/configuration
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Feature/configuration
feature/configuration
into
feature/popup
Overview
0
Commits
3
Pipelines
1
Changes
6
Merged
Krzysztof Dyszczyk
requested to merge
feature/configuration
into
feature/popup
3 years ago
Overview
0
Commits
3
Pipelines
1
Changes
6
0
0
Merge request reports
Compare
feature/popup
feature/popup (base)
and
latest version
latest version
77c53d1d
3 commits,
3 years ago
6 files
+
158
−
70
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
src/ActivationReminder/Composer/InvalidSettingValue.php
0 → 100644
+
12
−
0
View file @ 77c53d1d
Edit in single-file editor
Open in Web IDE
<?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