├── .gitignore ├── README.md ├── composer.json ├── psalm.xml └── src ├── BaseAttribute.php ├── Deprecated.php ├── ExternalMutationFree.php ├── Immutable.php ├── Internal.php ├── Pure.php └── Readonly.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-attributes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-attributes/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-attributes/HEAD/composer.json -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-attributes/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/BaseAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-attributes/HEAD/src/BaseAttribute.php -------------------------------------------------------------------------------- /src/Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-attributes/HEAD/src/Deprecated.php -------------------------------------------------------------------------------- /src/ExternalMutationFree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-attributes/HEAD/src/ExternalMutationFree.php -------------------------------------------------------------------------------- /src/Immutable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-attributes/HEAD/src/Immutable.php -------------------------------------------------------------------------------- /src/Internal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-attributes/HEAD/src/Internal.php -------------------------------------------------------------------------------- /src/Pure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-attributes/HEAD/src/Pure.php -------------------------------------------------------------------------------- /src/Readonly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-attributes/HEAD/src/Readonly.php --------------------------------------------------------------------------------