mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-08-28 10:08:56 +02:00
Big refactoring. Use of Namespaces and codestyles. PSR-0, PSR-1, PSR-2.
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
<?php
|
||||
class Task_Permissions
|
||||
extends Mage_Task_TaskAbstract
|
||||
namespace Task;
|
||||
|
||||
use Mage\Task\AbstractTask;
|
||||
|
||||
class Permissions extends AbstractTask
|
||||
{
|
||||
public function getName()
|
||||
{
|
||||
@@ -10,7 +13,7 @@ class Task_Permissions
|
||||
public function run()
|
||||
{
|
||||
$command = 'chmod 755 . -R';
|
||||
$result = $this->_runRemoteCommand($command);
|
||||
$result = $this->runCommandRemote($command);
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user