mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	Reworked oauth_sessions table. Added extension to use MariaDB's JSON columns. Rewritten tests for authorization_code grant for client side. Deprecate some old shit. [skip ci]
		
			
				
	
	
		
			16 lines
		
	
	
		
			434 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			434 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace api\exceptions;
 | |
| 
 | |
| /**
 | |
|  * The exception can be used for cases where the outcome doesn't seem to be expected,
 | |
|  * but can theoretically happen. The goal is to capture these areas and refine the logic
 | |
|  * if such situations do occur.
 | |
|  *
 | |
|  * @deprecated use \Webmozart\Assert\Assert to ensure, that action has been successfully performed
 | |
|  */
 | |
| class ThisShouldNotHappenException extends Exception {
 | |
| 
 | |
| }
 |