Skip to content
Snippets Groups Projects
Select Git revision
  • 1cbba3f9ce5fb3de8992a916286f545f3787e128
  • 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

codeception-parallel.yml

Blame
  • TextAreaField.php 241 B
    <?php
    
    namespace WPDesk\Forms\Field;
    
    
    class TextAreaField extends BasicField {
    	public function __construct() {
    		parent::__construct();
    		$this->set_default_value( '' );
    	}
    
    	public function get_template_name() {
    		return 'textarea';
    	}
    }