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
!12
feature(core): command fix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
feature(core): command fix
bugfix/command-return
into
main
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Sebastian Pisula
requested to merge
bugfix/command-return
into
main
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
2
@grola
FYI
0
0
Merge request reports
Viewing commit
2fe55b8f
Show latest version
2 files
+
7
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
2fe55b8f
feature(core): command fix
· 2fe55b8f
Sebastian Pisula
authored
2 years ago
src/ActivationReminder/Composer/PrepareActivationReminderCommand.php
+
3
−
0
View file @ 2fe55b8f
Edit in single-file editor
Open in Web IDE
Show full file
@@ -3,6 +3,7 @@
namespace
WPDesk\ActivationReminder\Composer
;
use
Composer\Command\BaseCommand
;
use
Symfony\Component\Console\Command\Command
;
use
Symfony\Component\Console\Input\InputInterface
;
use
Symfony\Component\Console\Output\OutputInterface
;
@@ -58,6 +59,8 @@ class PrepareActivationReminderCommand extends BaseCommand
$this
->
regenerate_autoload
(
$target_file
,
$input
);
$output
->
writeln
(
"Activation reminder created."
);
return
Command
::
SUCCESS
;
}
private
function
create_or_get_target_file_name
(
array
$class_map
,
$random_class
,
$random_letter
)
{
Loading