- 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
11 lines
345 B
PHP
Executable File
11 lines
345 B
PHP
Executable File
<?php
|
|
|
|
namespace Stripe\Exception\OAuth;
|
|
|
|
/**
|
|
* InvalidClientException is thrown when the client_id does not belong to you,
|
|
* the stripe_user_id does not exist or is not connected to your application,
|
|
* or the API key mode (live or test mode) does not match the client_id mode.
|
|
*/
|
|
class InvalidClientException extends OAuthErrorException {}
|