From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- .../Properties/Options/OptionsPropertyOneItem.php | 161 --------------------- 1 file changed, 161 deletions(-) delete mode 100644 srcs/phpmyadmin/libraries/classes/Properties/Options/OptionsPropertyOneItem.php (limited to 'srcs/phpmyadmin/libraries/classes/Properties/Options/OptionsPropertyOneItem.php') diff --git a/srcs/phpmyadmin/libraries/classes/Properties/Options/OptionsPropertyOneItem.php b/srcs/phpmyadmin/libraries/classes/Properties/Options/OptionsPropertyOneItem.php deleted file mode 100644 index 2ffca61..0000000 --- a/srcs/phpmyadmin/libraries/classes/Properties/Options/OptionsPropertyOneItem.php +++ /dev/null @@ -1,161 +0,0 @@ -_force_one; - } - - /** - * Sets the force parameter - * - * @param bool $force force parameter - * - * @return void - */ - public function setForce($force) - { - $this->_force_one = $force; - } - - /** - * Gets the values - * - * @return array - */ - public function getValues() - { - return $this->_values; - } - - /** - * Sets the values - * - * @param array $values values - * - * @return void - */ - public function setValues(array $values) - { - $this->_values = $values; - } - - /** - * Gets MySQL documentation pointer - * - * @return string - */ - public function getDoc() - { - return $this->_doc; - } - - /** - * Sets the doc - * - * @param string $doc MySQL documentation pointer - * - * @return void - */ - public function setDoc($doc) - { - $this->_doc = $doc; - } - - /** - * Gets the length - * - * @return int - */ - public function getLen() - { - return $this->_len; - } - - /** - * Sets the length - * - * @param int $len length - * - * @return void - */ - public function setLen($len) - { - $this->_len = $len; - } - - /** - * Gets the size - * - * @return int - */ - public function getSize() - { - return $this->_size; - } - - /** - * Sets the size - * - * @param int $size size - * - * @return void - */ - public function setSize($size) - { - $this->_size = $size; - } -} -- cgit