Skip to content
Snippets Groups Projects
Select Git revision
  • 2fb03b9e6d851d988a73a8b8437bc317359c0cc9
  • master default protected
  • feat/npm-publish
  • feat/demo-deploy
  • change-demo-deploy
  • remove-smoke
  • feat/acceptance-tests
  • feature/deploy-composer.json
  • feature/mysql-bin-logs
  • skip-codecept-for-libs
  • include-composer-json
  • exclude-wp-assets
  • update_codecept_image
  • fix/silenced-copy
  • remove-free-translations
  • codeception-with-optional-step
  • improve-parallelization
  • linter-exit
  • change-images
  • fix/linter
  • globally-raise-mem-limit
  • no-symlink2
22 results

gitlab-ci-free.yml

Blame
  • InvalidSettingValue.php 336 B
    <?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 );
    	}
    
    }