├── .github └── workflows │ └── run-tests.yml ├── .gitignore ├── .php_cs ├── LICENSE.txt ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── NullableFields.php └── tests ├── Fakes ├── DateTest.php ├── Product.php ├── UserProfile.php ├── UserProfileAll.php └── UserProfileSaving.php ├── NullableFieldsIntegrationTest.php ├── NullableFieldsTest.php ├── Pest.php └── TestCase.php /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/.php_cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/NullableFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/src/NullableFields.php -------------------------------------------------------------------------------- /tests/Fakes/DateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/tests/Fakes/DateTest.php -------------------------------------------------------------------------------- /tests/Fakes/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/tests/Fakes/Product.php -------------------------------------------------------------------------------- /tests/Fakes/UserProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/tests/Fakes/UserProfile.php -------------------------------------------------------------------------------- /tests/Fakes/UserProfileAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/tests/Fakes/UserProfileAll.php -------------------------------------------------------------------------------- /tests/Fakes/UserProfileSaving.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/tests/Fakes/UserProfileSaving.php -------------------------------------------------------------------------------- /tests/NullableFieldsIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/tests/NullableFieldsIntegrationTest.php -------------------------------------------------------------------------------- /tests/NullableFieldsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/tests/NullableFieldsTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldyrynda/laravel-nullable-fields/HEAD/tests/TestCase.php --------------------------------------------------------------------------------