]> source.dussan.org Git - nextcloud-server.git/commitdiff
Checkstyle fixes for SpaceBeforeOpenBrace
authorFelix Moeller <mail@felixmoeller.de>
Sun, 4 Nov 2012 09:46:32 +0000 (10:46 +0100)
committerFelix Moeller <mail@felixmoeller.de>
Sun, 4 Nov 2012 09:46:32 +0000 (10:46 +0100)
23 files changed:
apps/files/ajax/move.php
apps/files/ajax/upload.php
apps/files/appinfo/update.php
cron.php
lib/backgroundjob.php
lib/filecache.php
lib/filecache/update.php
lib/fileproxy/fileoperations.php
lib/fileproxy/quota.php
lib/filesystem.php
lib/filesystemview.php
lib/helper.php
lib/log.php
lib/migrate.php
lib/migration/content.php
lib/router.php
lib/setup.php
lib/template.php
tests/bootstrap.php
tests/lib/cache.php
tests/lib/cache/apc.php
tests/lib/cache/xcache.php
tests/lib/template.php

index 0541bb160623f5be3df06bd9ac32f683105df844..5612716b7e4692f50b2c598ed26fef54fae34125 100644 (file)
@@ -12,7 +12,7 @@ $file = stripslashes($_GET["file"]);
 $target = stripslashes(rawurldecode($_GET["target"]));
 
 
-if(OC_Filesystem::file_exists($target . '/' . $file)){
+if(OC_Filesystem::file_exists($target . '/' . $file)) {
        OCP\JSON::error(array("data" => array( "message" => "Could not move $file - File with this name already exists" )));
        exit;
 }
index dc83057040300d649470ed09b8ccd8697a75d62b..7a69154677fd77b75768ae379abebe11bb045d9e 100644 (file)
@@ -38,7 +38,7 @@ $totalSize=0;
 foreach($files['size'] as $size) {
        $totalSize+=$size;
 }
-if($totalSize>OC_Filesystem::free_space($dir)){
+if($totalSize>OC_Filesystem::free_space($dir)) {
        OCP\JSON::error(array("data" => array( "message" => "Not enough space available" )));
        exit();
 }
index bcbbc6035faa2123c4e6ae58f278754be91bccdd..3c63ad3c7cee6ec86870def60b41fa9c7b26cfe5 100644 (file)
@@ -5,7 +5,7 @@ $installedVersion=OCP\Config::getAppValue('files', 'installed_version');
 if (version_compare($installedVersion, '1.1.6', '<')) {
        $query = OC_DB::prepare( "SELECT `propertyname`, `propertypath`, `userid` FROM `*PREFIX*properties`" );
        $result = $query->execute();
-       while( $row = $result->fetchRow()){
+       while( $row = $result->fetchRow()) {
                if ( $row["propertyname"][0] != '{' ) {
                        $query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertyname` = ? WHERE `userid` = ? AND `propertypath` = ?' );
                        $query->execute( array( '{DAV:}' + $row["propertyname"], $row["userid"], $row["propertypath"] ));
index fb76c2de4288624c02d8948c9e865eb455316c54..cd2e155a494bbeccefe046dc9c0248c7ab538017 100644 (file)
--- a/cron.php
+++ b/cron.php
@@ -30,7 +30,7 @@ class my_temporary_cron_class {
 // We use this function to handle (unexpected) shutdowns
 function handleUnexpectedShutdown() {
        // Delete lockfile
-       if( !my_temporary_cron_class::$keeplock && file_exists( my_temporary_cron_class::$lockfile )){
+       if( !my_temporary_cron_class::$keeplock && file_exists( my_temporary_cron_class::$lockfile )) {
                unlink( my_temporary_cron_class::$lockfile );
        }
        
@@ -80,7 +80,7 @@ if( OC::$CLI ) {
        }
 
        // check if backgroundjobs is still running
-       if( file_exists( my_temporary_cron_class::$lockfile )){
+       if( file_exists( my_temporary_cron_class::$lockfile )) {
                my_temporary_cron_class::$keeplock = true;
                my_temporary_cron_class::$sent = true;
                echo "Another instance of cron.php is still running!";
index 6415f5b84aac7e1be4344b38680aec85d5a3bae6..f486519bf0907922cabd4c215380d6834fa6d893 100644 (file)
@@ -44,7 +44,7 @@ class OC_BackgroundJob{
         * are "none", "ajax", "webcron", "cron"
         */
        public static function setExecutionType( $type ) {
-               if( !in_array( $type, array('none', 'ajax', 'webcron', 'cron'))){
+               if( !in_array( $type, array('none', 'ajax', 'webcron', 'cron'))) {
                        return false;
                }
                return OC_Appconfig::setValue( 'core', 'backgroundjobs_mode', $type );
index d5f90d30233c949e4594989941c4d9b5a7e04619..782e742d244313611cfd2050c44cdb6b6cc1b73e 100644 (file)
@@ -500,7 +500,7 @@ class OC_FileCache{
         * trigger an update for the cache by setting the mtimes to 0
         * @param string $user (optional)
         */
-       public static function triggerUpdate($user=''){
+       public static function triggerUpdate($user='') {
                if($user) {
                        $query=OC_DB::prepare('UPDATE `*PREFIX*fscache` SET `mtime`=0 WHERE `user`=? AND `mimetype`="httpd/unix-directory"');
                        $query->execute(array($user));
index ecfa89274414e08c9c562cbca919c0a15b565d75..ce395bf6edacd12f6d1a6582b0b1077e20f0ff84 100644 (file)
@@ -85,7 +85,7 @@ class OC_FileCache_Update{
                                        $file=$path.'/'.$filename;
                                        $isDir=$view->is_dir($file);
                                        if(self::hasUpdated($file, $root, $isDir)) {
-                                               if($isDir){
+                                               if($isDir) {
                                                        self::updateFolder($file, $root);
                                                }elseif($root===false) {//filesystem hooks are only valid for the default root
                                                        OC_Hook::emit('OC_Filesystem', 'post_write', array('path'=>$file));
@@ -174,7 +174,7 @@ class OC_FileCache_Update{
                }else{
                        $size=OC_FileCache::scanFile($path, $root);
                }
-               if($path !== '' and $path !== '/'){
+               if($path !== '' and $path !== '/') {
                        OC_FileCache::increaseSize(dirname($path), $size-$cachedSize, $root);
                }
        }
index 23fb63fcfb114383631da82cb3c1d8dbb78738cc..516629adaec1e8474623d87abec358a3fcdd9f38 100644 (file)
@@ -28,7 +28,7 @@ class OC_FileProxy_FileOperations extends OC_FileProxy{
        static $rootView;
 
        public function premkdir($path) {
-               if(!self::$rootView){
+               if(!self::$rootView) {
                        self::$rootView = new OC_FilesystemView('');
                }
                return !self::$rootView->file_exists($path);
index 54bda5d864e5e446f9c269430f52cef0ca32e7fd..05b617c83270993e66e515ce54db5d349a7e8efc 100644 (file)
@@ -93,7 +93,7 @@ class OC_FileProxy_Quota extends OC_FileProxy{
        }
 
        public function preCopy($path1, $path2) {
-               if(!self::$rootView){
+               if(!self::$rootView) {
                        self::$rootView = new OC_FilesystemView('');
                }
                return (self::$rootView->filesize($path1)<$this->getFreeSpace($path2) or $this->getFreeSpace($path2)==0);
index 852290e62ac3ea26b23899a83de363456ae5fb8b..055ba66aae3d5b94a218c9e56edf17a6afde58c7 100644 (file)
@@ -403,7 +403,7 @@ class OC_Filesystem{
                if(strstr($path, '/../') || strrchr($path, '/') === '/..' ) {
                        return false;
                }
-               if(self::isFileBlacklisted($path)){
+               if(self::isFileBlacklisted($path)) {
                        return false;
                }
                return true;
@@ -425,7 +425,7 @@ class OC_Filesystem{
                }
        }
 
-       static public function isFileBlacklisted($path){
+       static public function isFileBlacklisted($path) {
                $blacklist = array('.htaccess');
                $filename = strtolower(basename($path));
                return in_array($filename, $blacklist);
index 9a38601acfa797c24064b6b3976eebf6be204a18..ecbdb63ec5400fe84970cb2971bb9c7ffcc48b9b 100644 (file)
@@ -251,7 +251,7 @@ class OC_FilesystemView {
                return $this->basicOperation('filemtime', $path);
        }
        public function touch($path, $mtime=null) {
-               if(!is_null($mtime) and !is_numeric($mtime)){
+               if(!is_null($mtime) and !is_numeric($mtime)) {
                        $mtime = strtotime($mtime);
                }
                return $this->basicOperation('touch', $path, array('write'), $mtime);
@@ -266,7 +266,7 @@ class OC_FilesystemView {
                                $path = $this->getRelativePath($absolutePath);
                                $exists = $this->file_exists($path);
                                $run = true;
-                               if( $this->fakeRoot==OC_Filesystem::getRoot() ){
+                               if( $this->fakeRoot==OC_Filesystem::getRoot() ) {
                                        if(!$exists) {
                                                OC_Hook::emit(
                                                        OC_Filesystem::CLASSNAME,
@@ -294,7 +294,7 @@ class OC_FilesystemView {
                                        $count=OC_Helper::streamCopy($data, $target);
                                        fclose($target);
                                        fclose($data);
-                                       if( $this->fakeRoot==OC_Filesystem::getRoot() ){
+                                       if( $this->fakeRoot==OC_Filesystem::getRoot() ) {
                                                if(!$exists) {
                                                        OC_Hook::emit(
                                                                OC_Filesystem::CLASSNAME,
@@ -337,7 +337,7 @@ class OC_FilesystemView {
                                return false;
                        }
                        $run=true;
-                       if( $this->fakeRoot==OC_Filesystem::getRoot() ){
+                       if( $this->fakeRoot==OC_Filesystem::getRoot() ) {
                                OC_Hook::emit(
                                        OC_Filesystem::CLASSNAME, OC_Filesystem::signal_rename,
                                                array(
@@ -362,7 +362,7 @@ class OC_FilesystemView {
                                        $storage1->unlink($this->getInternalPath($path1.$postFix1));
                                        $result = $count>0;
                                }
-                               if( $this->fakeRoot==OC_Filesystem::getRoot() ){
+                               if( $this->fakeRoot==OC_Filesystem::getRoot() ) {
                                        OC_Hook::emit(
                                                OC_Filesystem::CLASSNAME,
                                                OC_Filesystem::signal_post_rename,
@@ -389,7 +389,7 @@ class OC_FilesystemView {
                                return false;
                        }
                        $run=true;
-                       if( $this->fakeRoot==OC_Filesystem::getRoot() ){
+                       if( $this->fakeRoot==OC_Filesystem::getRoot() ) {
                                OC_Hook::emit(
                                        OC_Filesystem::CLASSNAME,
                                        OC_Filesystem::signal_copy,
@@ -433,7 +433,7 @@ class OC_FilesystemView {
                                        $target = $this->fopen($path2.$postFix2, 'w');
                                        $result = OC_Helper::streamCopy($source, $target);
                                }
-                               if( $this->fakeRoot==OC_Filesystem::getRoot() ){
+                               if( $this->fakeRoot==OC_Filesystem::getRoot() ) {
                                        OC_Hook::emit(
                                                OC_Filesystem::CLASSNAME,
                                                OC_Filesystem::signal_post_copy,
index 27e312eeb2b10ef432623b53299379386bb64156..ed459dab62434bd3992d5f205b4e6af5353e5f8d 100644 (file)
@@ -475,16 +475,16 @@ class OC_Helper {
                $dirs = explode(PATH_SEPARATOR, $path);
                // WARNING : We have to check if open_basedir is enabled :
                $obd = ini_get('open_basedir');
-               if($obd != "none"){
+               if($obd != "none") {
                        $obd_values = explode(PATH_SEPARATOR, $obd);
-                       if(count($obd_values) > 0 and $obd_values[0]){
+                       if(count($obd_values) > 0 and $obd_values[0]) {
                                // open_basedir is in effect !
                                // We need to check if the program is in one of these dirs :
                                $dirs = $obd_values;
                        }
                }
-               foreach($dirs as $dir){
-                       foreach($exts as $ext){
+               foreach($dirs as $dir) {
+                       foreach($exts as $ext) {
                                if($check_fn("$dir/$name".$ext))
                                        return true;
                        }
index 3fc1e3976a1733311a1b9aeec777db33e0fd6357..b5e8e1b06a1518777b771443f8e60ded51363010 100644 (file)
@@ -41,7 +41,7 @@ class OC_Log {
        }
        
        //Fatal errors handler
-       public static function onShutdown(){
+       public static function onShutdown() {
                $error = error_get_last();
                if($error) {
                        //ob_end_clean();
@@ -52,12 +52,12 @@ class OC_Log {
        }
        
        // Uncaught exception handler
-       public static function onException($exception){
+       public static function onException($exception) {
                self::write('PHP', $exception->getMessage() . ' at ' . $exception->getFile() . '#' . $exception->getLine(), self::FATAL);
        }
 
        //Recoverable errors handler
-       public static function onError($number, $message, $file, $line){
+       public static function onError($number, $message, $file, $line) {
                if (error_reporting() === 0) {
                        return;
                }
index 409d77a1a96613c0c4e8fdef8db712088020c029..e967ae06ecf11e3f9a9f401eddb22d550865134c 100644 (file)
@@ -91,7 +91,7 @@ class OC_Migrate{
                if( self::$exporttype == 'user' ) {
                        // Check user exists
                        self::$uid = is_null($uid) ? OC_User::getUser() : $uid;
-                       if(!OC_User::userExists(self::$uid)){
+                       if(!OC_User::userExists(self::$uid)) {
                                return json_encode( array( 'success' => false) );
                        }
                }
index ca102b03d8f94fa954e6c8252787d2b9a1f96355..eec475945a87b2dcfff0023d5f6cd9995345ba93 100644 (file)
@@ -53,7 +53,7 @@ class OC_Migration_Content{
                if( !is_null( $this->db ) ) {
                        // Get db path
                        $db = $this->db->getDatabase();
-                       if(!in_array($db, $this->tmpfiles)){
+                       if(!in_array($db, $this->tmpfiles)) {
                                $this->tmpfiles[] = $db;
                        }
                }
index 7bbc546d757c1c496defe98903c9cec518b13924..8cb8fd4f33b3e68664ba8f228f2ff5228c7388de 100644 (file)
@@ -34,7 +34,7 @@ class OC_Router {
        public function getRoutingFiles() {
                if (!isset($this->routing_files)) {
                        $this->routing_files = array();
-                       foreach(OC_APP::getEnabledApps() as $app){
+                       foreach(OC_APP::getEnabledApps() as $app) {
                                $file = OC_App::getAppPath($app).'/appinfo/routes.php';
                                if(file_exists($file)) {
                                        $this->routing_files[$app] = $file;
index d0620f814a086a2cacb157cedea56899a7015930..c424ad6fb00bc56561830bbd4ffb2780834f89b9 100644 (file)
@@ -70,7 +70,7 @@ class OC_Setup {
                        if(empty($options['dbname'])) {
                                $error[] = "$dbprettyname enter the database name.";
                        }
-                       if(substr_count($options['dbname'], '.') >= 1){
+                       if(substr_count($options['dbname'], '.') >= 1) {
                                $error[] = "$dbprettyname you may not use dots in the database name";
                        }
                        if($dbtype != 'oci' && empty($options['dbhost'])) {
index ed2481afba2f25d7d0610f156a705e4829e02fa1..ad25dbcff519861c1b1ba4e0a86275c8d5884e14 100644 (file)
@@ -25,7 +25,7 @@
  * Prints an XSS escaped string
  * @param string $string the string which will be escaped and printed
  */
-function p($string){
+function p($string) {
        print(OC_Util::sanitizeHTML($string));
 }
 
@@ -33,7 +33,7 @@ function p($string){
  * Prints an unescaped string
  * @param string $string the string which will be printed as it is
  */
-function print_unescaped($string){
+function print_unescaped($string) {
        print($string);
 }
 
index f8364b71ef79697f46d51887f7e5a2214b7870f0..4080a974be789a957df09724fd591a7f277c9a4c 100644 (file)
@@ -2,25 +2,25 @@
 
 require_once __DIR__.'/../lib/base.php';
 
-if(!class_exists('PHPUnit_Framework_TestCase')){
+if(!class_exists('PHPUnit_Framework_TestCase')) {
        require_once('PHPUnit/Autoload.php');
 }
 
 //SimpleTest compatibility
 abstract class UnitTestCase extends PHPUnit_Framework_TestCase{
-       function assertEqual($expected, $actual, $string=''){
+       function assertEqual($expected, $actual, $string='') {
                $this->assertEquals($expected, $actual, $string);
        }
 
-       function assertNotEqual($expected, $actual, $string=''){
+       function assertNotEqual($expected, $actual, $string='') {
                $this->assertNotEquals($expected, $actual, $string);
        }
 
-       static function assertTrue($actual, $string=''){
+       static function assertTrue($actual, $string='') {
                parent::assertTrue((bool)$actual, $string);
        }
 
-       static function assertFalse($actual, $string=''){
+       static function assertFalse($actual, $string='') {
                parent::assertFalse((bool)$actual, $string);
        }
 }
index 7f3eb3ee6fa0fa49fec97c12aac251a13fb443b1..c104460ea4d21845cbb0c83797c01280f2e92fd0 100644 (file)
@@ -13,7 +13,7 @@ abstract class Test_Cache extends UnitTestCase {
        protected $instance;
 
        public function tearDown() {
-               if($this->instance){
+               if($this->instance) {
                        $this->instance->clear();
                }
        }
index f68b97bcbd925f9b58b8c5ee0b5891926de5746d..bb5eb483dbf150bcb523c2907f64eed31cf09998 100644 (file)
 
 class Test_Cache_APC extends Test_Cache {
        public function setUp() {
-               if(!extension_loaded('apc')){
+               if(!extension_loaded('apc')) {
                        $this->markTestSkipped('The apc extension is not available.');
                        return;
                }
-               if(!ini_get('apc.enable_cli') && OC::$CLI){
+               if(!ini_get('apc.enable_cli') && OC::$CLI) {
                        $this->markTestSkipped('apc not available in CLI.');
                        return;
                }
index c081036a31f5b42cfba2f2cd0a13b7783fd996ab..43bed2db037a5f30ab45c2d280b42edcc83ddfd7 100644 (file)
@@ -22,7 +22,7 @@
 
 class Test_Cache_XCache extends Test_Cache {
        public function setUp() {
-               if(!function_exists('xcache_get')){
+               if(!function_exists('xcache_get')) {
                        $this->markTestSkipped('The xcache extension is not available.');
                        return;
                }
index dadfdba5e0c31a0865460d33fe8253e1290eb9b7..32ae4aca59055fc70704b150ec7fc025735ba203 100644 (file)
@@ -24,7 +24,7 @@ require_once("lib/template.php");
 
 class Test_TemplateFunctions extends UnitTestCase {
 
-       public function testP(){
+       public function testP() {
                // FIXME: do we need more testcases?
                $htmlString = "<script>alert('xss');</script>";
                ob_start();
@@ -35,7 +35,7 @@ class Test_TemplateFunctions extends UnitTestCase {
                $this->assertEqual("&lt;script&gt;alert(&#039;xss&#039;);&lt;/script&gt;", $result);
        }
 
-       public function testPNormalString(){
+       public function testPNormalString() {
                $normalString = "This is a good string!";
                ob_start();
                p($normalString);
@@ -46,7 +46,7 @@ class Test_TemplateFunctions extends UnitTestCase {
        }
 
 
-       public function testPrintUnescaped(){
+       public function testPrintUnescaped() {
                $htmlString = "<script>alert('xss');</script>";
 
                ob_start();
@@ -57,7 +57,7 @@ class Test_TemplateFunctions extends UnitTestCase {
                $this->assertEqual($htmlString, $result);
        }
 
-       public function testPrintUnescapedNormalString(){
+       public function testPrintUnescapedNormalString() {
                $normalString = "This is a good string!";
                ob_start();
                print_unescaped($normalString);