Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • feature/init
  • main
  • revert-ffead0bd
  • 1.0.0
  • 1.0.0-beta1
  • 1.0.0-beta2
  • 1.0.0-beta3
  • 1.0.0-beta4
  • 1.0.0-beta5
  • 1.0.0-beta6
  • 1.0.1
  • 1.0.1-beta1
  • 1.0.1-beta2
  • 1.0.1-beta3
  • 1.0.1-beta4
  • 1.0.2
  • 1.0.2-beta1
  • 1.0.2-beta2
  • 1.0.2-beta3
  • 1.1.0
  • 1.1.1
  • 1.1.2
  • 1.1.3
  • 1.1.4
  • 1.1.5
  • 1.1.6
  • 1.1.7
  • 1.1.8
28 results

Target

Select target project
  • wpdesk/library/wp-wpdesk-activation-reminder
1 result
Select Git revision
  • feature/init
  • main
  • revert-ffead0bd
  • 1.0.0
  • 1.0.0-beta1
  • 1.0.0-beta2
  • 1.0.0-beta3
  • 1.0.0-beta4
  • 1.0.0-beta5
  • 1.0.0-beta6
  • 1.0.1
  • 1.0.1-beta1
  • 1.0.1-beta2
  • 1.0.1-beta3
  • 1.0.1-beta4
  • 1.0.2
  • 1.0.2-beta1
  • 1.0.2-beta2
  • 1.0.2-beta3
  • 1.1.0
  • 1.1.1
  • 1.1.2
  • 1.1.3
  • 1.1.4
  • 1.1.5
  • 1.1.6
  • 1.1.7
  • 1.1.8
28 results
Show changes
Commits on Source (2)
## [1.1.6] - 2023-02-20
### Fixed
- Command return value
## [1.1.5] - 2021-08-19 ## [1.1.5] - 2021-08-19
### Fixed ### Fixed
- changes in text - changes in text
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
namespace WPDesk\ActivationReminder\Composer; namespace WPDesk\ActivationReminder\Composer;
use Composer\Command\BaseCommand; use Composer\Command\BaseCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\OutputInterface;
...@@ -58,6 +59,8 @@ class PrepareActivationReminderCommand extends BaseCommand ...@@ -58,6 +59,8 @@ class PrepareActivationReminderCommand extends BaseCommand
$this->regenerate_autoload( $target_file, $input ); $this->regenerate_autoload( $target_file, $input );
$output->writeln( "Activation reminder created." ); $output->writeln( "Activation reminder created." );
return Command::SUCCESS;
} }
private function create_or_get_target_file_name( array $class_map, $random_class, $random_letter ) { private function create_or_get_target_file_name( array $class_map, $random_class, $random_letter ) {
......