- Corrige l'erreur SQL 'Unknown column fk_operation in users' - L'opération active est récupérée depuis operations.chk_active = 1 - Jointure avec users pour filtrer par entité de l'admin créateur - Query: SELECT o.id FROM operations o INNER JOIN users u ON u.fk_entite = o.fk_entite WHERE u.id = ? AND o.chk_active = 1
10 lines
209 B
PHP
Executable File
10 lines
209 B
PHP
Executable File
<?php
|
|
|
|
namespace Stripe\Exception;
|
|
|
|
/**
|
|
* AuthenticationException is thrown when invalid credentials are used to
|
|
* connect to Stripe's servers.
|
|
*/
|
|
class AuthenticationException extends ApiErrorException {}
|