This basically completes coding standards changes for the entire src directory, with the exception of App.php
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			303 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			303 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @file src/Worker/ProfileUpdate.php
 | 
						|
 * @brief Send updated profile data to Diaspora
 | 
						|
 */
 | 
						|
 | 
						|
namespace Friendica\Worker;
 | 
						|
 | 
						|
use Friendica\Protocol\Diaspora;
 | 
						|
 | 
						|
class ProfileUpdate {
 | 
						|
	public static function execute($uid = 0) {
 | 
						|
		if (empty($uid)) {
 | 
						|
			return;
 | 
						|
		}
 | 
						|
 | 
						|
		Diaspora::sendProfile($uid);
 | 
						|
	}
 | 
						|
}
 |