- Configuration complète Stripe pour les 3 environnements (DEV/REC/PROD) * DEV: Clés TEST Pierre (mode test) * REC: Clés TEST Client (mode test) * PROD: Clés LIVE Client (mode live) - Ajout de la gestion des bases de données immeubles/bâtiments * Configuration buildings_database pour DEV/REC/PROD * Service BuildingService pour enrichissement des adresses - Optimisations pages et améliorations ergonomie - Mises à jour des dépendances Composer - Nettoyage des fichiers obsolètes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
38 lines
814 B
PHP
38 lines
814 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZipStream;
|
|
|
|
/**
|
|
* ZipStream execution operation modes
|
|
*
|
|
* @api
|
|
*/
|
|
enum OperationMode
|
|
{
|
|
/**
|
|
* Stream file into output stream
|
|
*/
|
|
case NORMAL;
|
|
|
|
/**
|
|
* Simulate the zip to figure out the resulting file size
|
|
*
|
|
* This only supports entries where the file size is known beforehand and
|
|
* deflation is disabled.
|
|
*/
|
|
case SIMULATE_STRICT;
|
|
|
|
/**
|
|
* Simulate the zip to figure out the resulting file size
|
|
*
|
|
* If the file size is not known beforehand or deflation is enabled, the
|
|
* entry streams will be read and rewound.
|
|
*
|
|
* If the entry does not support rewinding either, you will not be able to
|
|
* use the same stream in a later operation mode like `NORMAL`.
|
|
*/
|
|
case SIMULATE_LAX;
|
|
}
|