diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 843223c..a72d20b 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -20,6 +20,12 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + extensions: simplexml + #- name: Validate composer.json and composer.lock # run: composer validate diff --git a/CHANGELOG.md b/CHANGELOG.md index 32bda66..cd7f4ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ CHANGELOG ========= -## 4.2.0 +## 4.2.1 * [UPDATED] Updated to a minimum of PHP 7.3 and PHPUnit 9.0. Migrated from TravisCI to GitHub Actions for CI. diff --git a/README.md b/README.md index cf445d8..36e6193 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Install `pop-form` using Composer. Or, require it in your composer.json file "require": { - "popphp/pop-form" : "^4.2.0" + "popphp/pop-form" : "^4.2.1" } [Top](#pop-form) diff --git a/composer.json b/composer.json index 72d2001..01ab544 100644 --- a/composer.json +++ b/composer.json @@ -21,12 +21,11 @@ ], "require": { "php": ">=8.2.0", - "popphp/pop-acl": "^4.1.0", - "popphp/pop-dom": "^4.0.3", - "popphp/pop-filter": "^4.0.1", - "popphp/pop-utils": "^2.1.2", - "popphp/pop-validator": "^4.1.1", - "ext-simplexml": "*" + "popphp/pop-acl": "^4.1.1", + "popphp/pop-dom": "^4.0.4", + "popphp/pop-filter": "^4.0.2", + "popphp/pop-utils": "^2.1.3", + "popphp/pop-validator": "^4.1.2" }, "require-dev": { "phpunit/phpunit": "^11.0.0", @@ -34,7 +33,8 @@ }, "suggest": { "popphp/pop-db": "To use the dynamic field generation based on database table columns", - "popphp/pop-view": "To use render the form fields with a view" + "popphp/pop-view": "To use render the form fields with a view", + "ext-simplexml": "For handling XML" }, "autoload": { "psr-4": { diff --git a/src/AclForm.php b/src/AclForm.php index 9739b24..4667812 100644 --- a/src/AclForm.php +++ b/src/AclForm.php @@ -25,7 +25,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class AclForm extends Form diff --git a/src/Element/AbstractElement.php b/src/Element/AbstractElement.php index 637c88b..b922223 100644 --- a/src/Element/AbstractElement.php +++ b/src/Element/AbstractElement.php @@ -24,7 +24,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ abstract class AbstractElement extends Child implements ElementInterface { diff --git a/src/Element/AbstractSelect.php b/src/Element/AbstractSelect.php index 4ae979e..93e12fe 100644 --- a/src/Element/AbstractSelect.php +++ b/src/Element/AbstractSelect.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ abstract class AbstractSelect extends AbstractElement diff --git a/src/Element/Button.php b/src/Element/Button.php index f2c1450..b7a5810 100644 --- a/src/Element/Button.php +++ b/src/Element/Button.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Button extends AbstractElement diff --git a/src/Element/CheckboxSet.php b/src/Element/CheckboxSet.php index b77899f..c13e481 100644 --- a/src/Element/CheckboxSet.php +++ b/src/Element/CheckboxSet.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class CheckboxSet extends AbstractElement diff --git a/src/Element/ElementInterface.php b/src/Element/ElementInterface.php index c1a2608..8322a9a 100644 --- a/src/Element/ElementInterface.php +++ b/src/Element/ElementInterface.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ interface ElementInterface { diff --git a/src/Element/Exception.php b/src/Element/Exception.php index 0c2ac3c..fd300fe 100644 --- a/src/Element/Exception.php +++ b/src/Element/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Exception extends \Exception {} diff --git a/src/Element/Input.php b/src/Element/Input.php index c4613e5..5867f82 100644 --- a/src/Element/Input.php +++ b/src/Element/Input.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Input extends AbstractElement diff --git a/src/Element/Input/Button.php b/src/Element/Input/Button.php index 5ae333f..d36ae8e 100644 --- a/src/Element/Input/Button.php +++ b/src/Element/Input/Button.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Button extends Element\Input diff --git a/src/Element/Input/Captcha.php b/src/Element/Input/Captcha.php index c30ce35..cddbeb6 100644 --- a/src/Element/Input/Captcha.php +++ b/src/Element/Input/Captcha.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Captcha extends Text diff --git a/src/Element/Input/Checkbox.php b/src/Element/Input/Checkbox.php index 367f622..1d0d932 100644 --- a/src/Element/Input/Checkbox.php +++ b/src/Element/Input/Checkbox.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Checkbox extends Element\Input diff --git a/src/Element/Input/Color.php b/src/Element/Input/Color.php index 4b497b5..7a0ece7 100644 --- a/src/Element/Input/Color.php +++ b/src/Element/Input/Color.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Color extends Element\Input diff --git a/src/Element/Input/Csrf.php b/src/Element/Input/Csrf.php index 2782ee1..5c5f989 100644 --- a/src/Element/Input/Csrf.php +++ b/src/Element/Input/Csrf.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Csrf extends Hidden diff --git a/src/Element/Input/Datalist.php b/src/Element/Input/Datalist.php index aa0f01f..bf52134 100644 --- a/src/Element/Input/Datalist.php +++ b/src/Element/Input/Datalist.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Datalist extends Text diff --git a/src/Element/Input/Date.php b/src/Element/Input/Date.php index ffd24c4..fc82c3b 100644 --- a/src/Element/Input/Date.php +++ b/src/Element/Input/Date.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Date extends Element\Input diff --git a/src/Element/Input/DateTime.php b/src/Element/Input/DateTime.php index bec478c..62acb49 100644 --- a/src/Element/Input/DateTime.php +++ b/src/Element/Input/DateTime.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class DateTime extends Element\Input diff --git a/src/Element/Input/DateTimeLocal.php b/src/Element/Input/DateTimeLocal.php index e41feb2..4f681c3 100644 --- a/src/Element/Input/DateTimeLocal.php +++ b/src/Element/Input/DateTimeLocal.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class DateTimeLocal extends Element\Input diff --git a/src/Element/Input/Email.php b/src/Element/Input/Email.php index bcbed48..f84abde 100644 --- a/src/Element/Input/Email.php +++ b/src/Element/Input/Email.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Email extends Element\Input diff --git a/src/Element/Input/Exception.php b/src/Element/Input/Exception.php index ca56ff7..0610139 100644 --- a/src/Element/Input/Exception.php +++ b/src/Element/Input/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Exception extends \Exception {} diff --git a/src/Element/Input/File.php b/src/Element/Input/File.php index a2229ea..dd55f75 100644 --- a/src/Element/Input/File.php +++ b/src/Element/Input/File.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class File extends Element\Input diff --git a/src/Element/Input/Hidden.php b/src/Element/Input/Hidden.php index b455a70..24a7365 100644 --- a/src/Element/Input/Hidden.php +++ b/src/Element/Input/Hidden.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Hidden extends Element\Input diff --git a/src/Element/Input/Month.php b/src/Element/Input/Month.php index f08e5ea..fac8830 100644 --- a/src/Element/Input/Month.php +++ b/src/Element/Input/Month.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Month extends Element\Input diff --git a/src/Element/Input/Number.php b/src/Element/Input/Number.php index 65408b1..3d4171f 100644 --- a/src/Element/Input/Number.php +++ b/src/Element/Input/Number.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Number extends Element\Input diff --git a/src/Element/Input/Password.php b/src/Element/Input/Password.php index 524edf5..7ab5ad8 100644 --- a/src/Element/Input/Password.php +++ b/src/Element/Input/Password.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Password extends Element\Input diff --git a/src/Element/Input/Radio.php b/src/Element/Input/Radio.php index 959ba8c..430f959 100644 --- a/src/Element/Input/Radio.php +++ b/src/Element/Input/Radio.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Radio extends Element\Input diff --git a/src/Element/Input/Range.php b/src/Element/Input/Range.php index 2a6c31d..370f434 100644 --- a/src/Element/Input/Range.php +++ b/src/Element/Input/Range.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Range extends Element\Input diff --git a/src/Element/Input/Reset.php b/src/Element/Input/Reset.php index 6866766..c4334c4 100644 --- a/src/Element/Input/Reset.php +++ b/src/Element/Input/Reset.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Reset extends Element\Input diff --git a/src/Element/Input/Search.php b/src/Element/Input/Search.php index cab1a67..7d6905d 100644 --- a/src/Element/Input/Search.php +++ b/src/Element/Input/Search.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Search extends Element\Input diff --git a/src/Element/Input/Submit.php b/src/Element/Input/Submit.php index 7dccab7..7efe662 100644 --- a/src/Element/Input/Submit.php +++ b/src/Element/Input/Submit.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Submit extends Element\Input diff --git a/src/Element/Input/Tel.php b/src/Element/Input/Tel.php index 2128158..55171b2 100644 --- a/src/Element/Input/Tel.php +++ b/src/Element/Input/Tel.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Tel extends Element\Input diff --git a/src/Element/Input/Text.php b/src/Element/Input/Text.php index 5125109..30e0781 100644 --- a/src/Element/Input/Text.php +++ b/src/Element/Input/Text.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Text extends Element\Input diff --git a/src/Element/Input/Time.php b/src/Element/Input/Time.php index b737290..5bad22d 100644 --- a/src/Element/Input/Time.php +++ b/src/Element/Input/Time.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Time extends Element\Input diff --git a/src/Element/Input/Url.php b/src/Element/Input/Url.php index 3ac53f4..dd3c747 100644 --- a/src/Element/Input/Url.php +++ b/src/Element/Input/Url.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Url extends Element\Input diff --git a/src/Element/Input/Week.php b/src/Element/Input/Week.php index e7e323e..5accacf 100644 --- a/src/Element/Input/Week.php +++ b/src/Element/Input/Week.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Week extends Element\Input diff --git a/src/Element/RadioSet.php b/src/Element/RadioSet.php index cd1847f..ade53d4 100644 --- a/src/Element/RadioSet.php +++ b/src/Element/RadioSet.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class RadioSet extends AbstractElement diff --git a/src/Element/Select.php b/src/Element/Select.php index 69d6041..b946e08 100644 --- a/src/Element/Select.php +++ b/src/Element/Select.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Select extends AbstractSelect diff --git a/src/Element/Select/Exception.php b/src/Element/Select/Exception.php index 7504102..e089c91 100644 --- a/src/Element/Select/Exception.php +++ b/src/Element/Select/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Exception extends \Exception {} diff --git a/src/Element/Select/Optgroup.php b/src/Element/Select/Optgroup.php index 1ad55d7..69be246 100644 --- a/src/Element/Select/Optgroup.php +++ b/src/Element/Select/Optgroup.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Optgroup extends Child diff --git a/src/Element/Select/Option.php b/src/Element/Select/Option.php index a731b97..7f69115 100644 --- a/src/Element/Select/Option.php +++ b/src/Element/Select/Option.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Option extends Child diff --git a/src/Element/SelectMultiple.php b/src/Element/SelectMultiple.php index 6a4d7ed..9e76e58 100644 --- a/src/Element/SelectMultiple.php +++ b/src/Element/SelectMultiple.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class SelectMultiple extends AbstractSelect diff --git a/src/Element/Textarea.php b/src/Element/Textarea.php index 952b266..bf17817 100644 --- a/src/Element/Textarea.php +++ b/src/Element/Textarea.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Textarea extends AbstractElement diff --git a/src/Exception.php b/src/Exception.php index 4df32ae..f579c28 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Exception extends \Exception {} diff --git a/src/Fields.php b/src/Fields.php index 025f0f8..1d10e70 100644 --- a/src/Fields.php +++ b/src/Fields.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Fields { diff --git a/src/Fieldset.php b/src/Fieldset.php index 71ada17..703f799 100644 --- a/src/Fieldset.php +++ b/src/Fieldset.php @@ -25,7 +25,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Fieldset extends Child implements \ArrayAccess, \Countable, \IteratorAggregate diff --git a/src/Form.php b/src/Form.php index 4c12e7b..1fc2d8c 100644 --- a/src/Form.php +++ b/src/Form.php @@ -27,7 +27,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class Form extends Child implements FormInterface, \ArrayAccess, \Countable, \IteratorAggregate diff --git a/src/FormConfig.php b/src/FormConfig.php index 7b04bca..658758b 100644 --- a/src/FormConfig.php +++ b/src/FormConfig.php @@ -24,7 +24,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class FormConfig extends Utils\ArrayObject diff --git a/src/FormInterface.php b/src/FormInterface.php index e4ba064..57500ca 100644 --- a/src/FormInterface.php +++ b/src/FormInterface.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ interface FormInterface diff --git a/src/FormTrait.php b/src/FormTrait.php index c38ab99..477757e 100644 --- a/src/FormTrait.php +++ b/src/FormTrait.php @@ -24,7 +24,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ trait FormTrait diff --git a/src/FormValidator.php b/src/FormValidator.php index f4cd132..ee32d3d 100644 --- a/src/FormValidator.php +++ b/src/FormValidator.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 4.2.0 + * @version 4.2.1 */ class FormValidator implements FormInterface, \ArrayAccess, \Countable, \IteratorAggregate