%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/knwn/wp-content/plugins/admin-columns-pro/classes/Editing/View/
Upload File :
Create Path :
Current File : /var/www/knwn/wp-content/plugins/admin-columns-pro/classes/Editing/View/MinMaxTrait.php

<?php

namespace ACP\Editing\View;

trait MinMaxTrait {

	/**
	 * @param float $min
	 *
	 * @return $this
	 */
	public function set_min( $min ) {
		if ( is_numeric( $min ) ) {
			$this->set( 'range_min', (float) $min );
		}

		return $this;
	}

	/**
	 * @param float $min
	 *
	 * @return $this
	 */
	public function set_max( $max ) {
		if ( is_numeric( $max ) ) {
			$this->set( 'range_max', (float) $max );
		}

		return $this;
	}

}

Zerion Mini Shell 1.0