Skip to content

Commit

Permalink
Merge pull request #51 from nextcloud/psr4
Browse files Browse the repository at this point in the history
Move classes to PSR-4
  • Loading branch information
MorrisJobke committed Aug 2, 2017
2 parents f94cea0 + 4a1bf25 commit cfc5239
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
3 changes: 2 additions & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ More information is available in the text editor documentation.
</description>
<licence>AGPL</licence>
<author>Tom Needham, Björn Schießle</author>
<version>2.5.0</version>
<version>2.5.1</version>
<shipped>true</shipped>
<default_enable/>
<dependencies>
<nextcloud min-version="13" max-version="13" />
</dependencies>
<namespace>FilesTextEditor</namespace>
</info>
2 changes: 1 addition & 1 deletion appinfo/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/


namespace OCA\Files_Texteditor\AppInfo;
namespace OCA\FilesTextEditor\AppInfo;

$app = new Application();

Expand Down
6 changes: 2 additions & 4 deletions appinfo/application.php → lib/AppInfo/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,11 @@
*/


namespace OCA\Files_Texteditor\AppInfo;
namespace OCA\FilesTextEditor\AppInfo;

use OC\Files\View;
use OCA\Files_Texteditor\Controller\FileHandlingController;
use OCA\FilesTextEditor\Controller\FileHandlingController;
use OCP\AppFramework\App;
use OCP\AppFramework\IAppContainer;
use Punic\Exception;

class Application extends App {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/


namespace OCA\Files_Texteditor\Controller;
namespace OCA\FilesTextEditor\Controller;


use OC\HintException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
*/


namespace OCA\Files_Texteditor\Tests\Controller;
namespace OCA\FilesTextEditor\Tests\Controller;


use OC\HintException;
use OCA\Files_Texteditor\Controller\FileHandlingController;
use OCA\FilesTextEditor\Controller\FileHandlingController;
use OCP\Files\File;
use OCP\Files\Folder;
use OCP\Files\ForbiddenException;
Expand Down

0 comments on commit cfc5239

Please sign in to comment.