mirror of
				https://github.com/hauke68/Magallanes.git
				synced 2025-11-04 09:00:18 +01:00 
			
		
		
		
	Fix code style in UnlockCommand
This commit is contained in:
		
							parent
							
								
									cde8263d06
								
							
						
					
					
						commit
						3792f5fb8c
					
				@ -19,8 +19,7 @@ use Mage\Console;
 | 
				
			|||||||
 *
 | 
					 *
 | 
				
			||||||
 * @author Andrés Montañez <andres@andresmontanez.com>
 | 
					 * @author Andrés Montañez <andres@andresmontanez.com>
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
class UnlockCommand
 | 
					class UnlockCommand extends AbstractCommand implements RequiresEnvironment
 | 
				
			||||||
    extends AbstractCommand implements RequiresEnvironment
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * Unlocks an Environment
 | 
					     * Unlocks an Environment
 | 
				
			||||||
@ -33,7 +32,12 @@ class UnlockCommand
 | 
				
			|||||||
            @unlink($lockFile);
 | 
					            @unlink($lockFile);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        Console::output('Unlocked deployment to <light_purple>' . $this->getConfig()->getEnvironment() . '</light_purple> environment', 1, 2);
 | 
					        Console::output(
 | 
				
			||||||
 | 
					            'Unlocked deployment to <light_purple>'
 | 
				
			||||||
 | 
					            . $this->getConfig()->getEnvironment() . '</light_purple> environment',
 | 
				
			||||||
 | 
					            1,
 | 
				
			||||||
 | 
					            2
 | 
				
			||||||
 | 
					        );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return 0;
 | 
					        return 0;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user