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
Compare revisions
ffead0bd741a4aca3758a880a7cbff16a9570cf6 to 7d16a152ee5c9e97ce3a9aecb9a4a8beab63fcb7
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
wpdesk/library/wp-wpdesk-activation-reminder
Select target project
No results found
7d16a152ee5c9e97ce3a9aecb9a4a8beab63fcb7
Select Git revision
Loading items
Swap
Target
wpdesk/library/wp-wpdesk-activation-reminder
Select target project
wpdesk/library/wp-wpdesk-activation-reminder
1 result
ffead0bd741a4aca3758a880a7cbff16a9570cf6
Select Git revision
Loading items
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
feature(core): command fix
· 2fe55b8f
Sebastian Pisula
authored
2 years ago
2fe55b8f
Merge branch 'bugfix/command-return' into 'main'
· 7d16a152
Sebastian Pisula
authored
2 years ago
feature(core): command fix See merge request
!12
7d16a152
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+4
-0
4 additions, 0 deletions
CHANGELOG.md
src/ActivationReminder/Composer/PrepareActivationReminderCommand.php
+3
-0
3 additions, 0 deletions
...ionReminder/Composer/PrepareActivationReminderCommand.php
with
7 additions
and
0 deletions
CHANGELOG.md
View file @
7d16a152
## [1.1.6] - 2023-02-20
### Fixed
-
Command return value
## [1.1.5] - 2021-08-19
### Fixed
-
changes in text
...
...
This diff is collapsed.
Click to expand it.
src/ActivationReminder/Composer/PrepareActivationReminderCommand.php
View file @
7d16a152
...
...
@@ -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
)
{
...
...
This diff is collapsed.
Click to expand it.