kopia lustrzana https://github.com/pixelfed/pixelfed
				
				
				
			
		
			
	
	
		
			20 wiersze
		
	
	
		
			343 B
		
	
	
	
		
			PHP
		
	
	
		
		
			
		
	
	
			20 wiersze
		
	
	
		
			343 B
		
	
	
	
		
			PHP
		
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace App;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								use App\Services\SnowflakeService;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								trait HasSnowflakePrimary
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
									public static function bootHasSnowflakePrimary()
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										static::saving(function ($model) {
							 | 
						||
| 
								 | 
							
											if (is_null($model->getKey())) {
							 | 
						||
| 
								 | 
							
												$keyName = $model->getKeyName();
							 | 
						||
| 
								 | 
							
												$id = SnowflakeService::next();
							 | 
						||
| 
								 | 
							
												$model->setAttribute($keyName, $id);
							 | 
						||
| 
								 | 
							
											}
							 | 
						||
| 
								 | 
							
										});
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								}
							 |