diff --git a/lib/Alchemy/Phrasea/Application/Api.php b/lib/Alchemy/Phrasea/Application/Api.php
index 64696fdfac..e0c6cd8ed9 100644
--- a/lib/Alchemy/Phrasea/Application/Api.php
+++ b/lib/Alchemy/Phrasea/Application/Api.php
@@ -315,8 +315,8 @@ return call_user_func(function()
return $app['response']($result);
}
);
-
-
+
+
$route = '/records/{databox_id}/{record_id}/caption/';
$app->get(
$route, function($databox_id, $record_id) use ($app)
diff --git a/lib/Alchemy/Phrasea/Application/Lightbox.php b/lib/Alchemy/Phrasea/Application/Lightbox.php
index fd67182353..481fee06db 100644
--- a/lib/Alchemy/Phrasea/Application/Lightbox.php
+++ b/lib/Alchemy/Phrasea/Application/Lightbox.php
@@ -293,7 +293,7 @@ return call_user_func(
$basket_collection = $repository->findActiveValidationAndBasketByUser(
$app['Core']->getAuthenticatedUser()
);
-
+
$basket = $repository->findUserBasket(
$ssel_id
, $app['Core']->getAuthenticatedUser()
diff --git a/lib/Alchemy/Phrasea/Application/OAuth2.php b/lib/Alchemy/Phrasea/Application/OAuth2.php
index 3744926402..78b423e05e 100644
--- a/lib/Alchemy/Phrasea/Application/OAuth2.php
+++ b/lib/Alchemy/Phrasea/Application/OAuth2.php
@@ -271,7 +271,7 @@ return call_user_func(function()
*/
$route = "/applications/dev/new";
$app->get($route, function() use ($app)
- {
+ {
$var = array("violations" => null, 'form' => null, 'request' => $app['request']);
return $app['response']('api/auth/application_dev_new.twig', $var);
diff --git a/lib/Alchemy/Phrasea/Application/Setup.php b/lib/Alchemy/Phrasea/Application/Setup.php
index 6425c98c77..180615c736 100644
--- a/lib/Alchemy/Phrasea/Application/Setup.php
+++ b/lib/Alchemy/Phrasea/Application/Setup.php
@@ -67,8 +67,10 @@ return call_user_func(function()
$app->get('/', function() use ($app)
{
if ($app['install'] === true)
+
return $app->redirect('/setup/installer/');
if ($app['upgrade'] === true)
+
return $app->redirect('/setup/upgrader/');
});
diff --git a/lib/Alchemy/Phrasea/Cache/ApcCache.php b/lib/Alchemy/Phrasea/Cache/ApcCache.php
index 64bc65b742..59f4d643c0 100644
--- a/lib/Alchemy/Phrasea/Cache/ApcCache.php
+++ b/lib/Alchemy/Phrasea/Cache/ApcCache.php
@@ -57,4 +57,4 @@ class ApcCache extends DoctrineApc implements Cache
return apc_clear_cache() && apc_clear_cache('user');
}
-}
\ No newline at end of file
+}
diff --git a/lib/Alchemy/Phrasea/Cache/ArrayCache.php b/lib/Alchemy/Phrasea/Cache/ArrayCache.php
index c5f45834ea..50e32f7577 100644
--- a/lib/Alchemy/Phrasea/Cache/ArrayCache.php
+++ b/lib/Alchemy/Phrasea/Cache/ArrayCache.php
@@ -40,6 +40,7 @@ class ArrayCache extends DoctrineArray implements Cache
{
throw new Exception(sprintf('Unable to find key %s', $id));
}
+
return $this->fetch($id);
}
@@ -60,4 +61,4 @@ class ArrayCache extends DoctrineArray implements Cache
return true;
}
-}
\ No newline at end of file
+}
diff --git a/lib/Alchemy/Phrasea/Cache/Cache.php b/lib/Alchemy/Phrasea/Cache/Cache.php
index 810260a4f8..91e94382fd 100644
--- a/lib/Alchemy/Phrasea/Cache/Cache.php
+++ b/lib/Alchemy/Phrasea/Cache/Cache.php
@@ -32,4 +32,4 @@ interface Cache extends DoctrineCache
public function deleteMulti(array $array_keys);
-}
\ No newline at end of file
+}
diff --git a/lib/Alchemy/Phrasea/Cache/Manager.php b/lib/Alchemy/Phrasea/Cache/Manager.php
index 06d72e2233..fd28285334 100644
--- a/lib/Alchemy/Phrasea/Cache/Manager.php
+++ b/lib/Alchemy/Phrasea/Cache/Manager.php
@@ -88,7 +88,7 @@ class Manager
if ($this->hasChange($cacheKey, $service_name))
{
$driver->flush();
-
+
if ($write)
{
$this->registry[$cacheKey] = $service_name;
diff --git a/lib/Alchemy/Phrasea/Cache/MemcacheCache.php b/lib/Alchemy/Phrasea/Cache/MemcacheCache.php
index c3de20998f..084e98bb0a 100644
--- a/lib/Alchemy/Phrasea/Cache/MemcacheCache.php
+++ b/lib/Alchemy/Phrasea/Cache/MemcacheCache.php
@@ -57,4 +57,4 @@ class MemcacheCache extends DoctrineMemcache implements Cache
return $this->getMemcache()->flush();
}
-}
\ No newline at end of file
+}
diff --git a/lib/Alchemy/Phrasea/Cache/XcacheCache.php b/lib/Alchemy/Phrasea/Cache/XcacheCache.php
index dce9e3412f..907639727f 100644
--- a/lib/Alchemy/Phrasea/Cache/XcacheCache.php
+++ b/lib/Alchemy/Phrasea/Cache/XcacheCache.php
@@ -57,4 +57,4 @@ class XcacheCache extends DoctrineXcache implements Cache
return xcache_clear_cache(XC_TYPE_VAR, 0);
}
-}
\ No newline at end of file
+}
diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Basket.php b/lib/Alchemy/Phrasea/Controller/Prod/Basket.php
index 014066d9ac..294d841c95 100644
--- a/lib/Alchemy/Phrasea/Controller/Prod/Basket.php
+++ b/lib/Alchemy/Phrasea/Controller/Prod/Basket.php
@@ -412,22 +412,22 @@ class Basket implements ControllerProviderInterface
$em->persist($basket_element);
$basket->addBasketElement($basket_element);
-
+
if(null !== $validationSession = $basket->getValidation())
{
if(false !== $validationSession->isFinished())
{
continue;
}
-
+
$participants = $validationSession->getParticipants();
-
+
foreach($participants as $participant)
{
$validationData = new \Entities\ValidationData();
$validationData->setParticipant($participant);
$validationData->setBasketElement($basket_element);
-
+
$em->persist($validationData);
}
}
diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Push.php b/lib/Alchemy/Phrasea/Controller/Prod/Push.php
index 52c83931e2..52c937be1e 100644
--- a/lib/Alchemy/Phrasea/Controller/Prod/Push.php
+++ b/lib/Alchemy/Phrasea/Controller/Prod/Push.php
@@ -763,7 +763,7 @@ class Push implements ControllerProviderInterface
{
$query->havePositions($request->get('Position'));
}
-
+
$sort = $request->get('srt', 'usr_creationdate');
$ord = $request->get('ord', 'desc');
diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Root.php b/lib/Alchemy/Phrasea/Controller/Prod/Root.php
index f9fb355df8..8d7bd9b7a7 100644
--- a/lib/Alchemy/Phrasea/Controller/Prod/Root.php
+++ b/lib/Alchemy/Phrasea/Controller/Prod/Root.php
@@ -44,7 +44,7 @@ class Root implements ControllerProviderInterface
$registry = $app['Core']->getRegistry();
$user = $app['Core']->getAuthenticatedUser();
$cssPath = $registry->get('GV_RootPath') . 'www/skins/prod/';
-
+
$css = array();
$cssfile = false;
@@ -79,7 +79,7 @@ class Root implements ControllerProviderInterface
$thjslist = "";
$queries_topics = '';
-
+
if ($registry->get('GV_client_render_topics') == 'popups')
{
$queries_topics = \queries::dropdown_topics();
@@ -90,7 +90,7 @@ class Root implements ControllerProviderInterface
}
$sbas = $bas2sbas = array();
-
+
foreach ($appbox->get_databoxes() as $databox)
{
$sbas_id = $databox->get_sbas_id();
diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Story.php b/lib/Alchemy/Phrasea/Controller/Prod/Story.php
index 1aa7099fcd..ae5d2c3ea3 100644
--- a/lib/Alchemy/Phrasea/Controller/Prod/Story.php
+++ b/lib/Alchemy/Phrasea/Controller/Prod/Story.php
@@ -110,7 +110,7 @@ class Story implements ControllerProviderInterface
, 'meta_id' => null
, 'value' => $value
);
-
+
break;
}
@@ -334,7 +334,7 @@ class Story implements ControllerProviderInterface
}
catch (\Exception $e)
{
-
+
}
$Serializer = $app['Core']['Serializer'];
diff --git a/lib/Alchemy/Phrasea/Core.php b/lib/Alchemy/Phrasea/Core.php
index 8277d5aad0..7316eb1148 100644
--- a/lib/Alchemy/Phrasea/Core.php
+++ b/lib/Alchemy/Phrasea/Core.php
@@ -279,7 +279,7 @@ class Core extends \Pimple
{
return \User_Adapter::getInstance($session->get_usr_id(), $appbox);
}
-
+
return null;
}
diff --git a/lib/Alchemy/Phrasea/Core/Configuration.php b/lib/Alchemy/Phrasea/Core/Configuration.php
index e7d7704e01..f50910a33b 100644
--- a/lib/Alchemy/Phrasea/Core/Configuration.php
+++ b/lib/Alchemy/Phrasea/Core/Configuration.php
@@ -49,6 +49,7 @@ class Configuration
{
$specifications = new Configuration\ApplicationSpecification();
}
+
return new self($specifications, $environment);
}
diff --git a/lib/Alchemy/Phrasea/Core/Configuration/ApplicationSpecification.php b/lib/Alchemy/Phrasea/Core/Configuration/ApplicationSpecification.php
index abb8b97834..e37d97d6df 100644
--- a/lib/Alchemy/Phrasea/Core/Configuration/ApplicationSpecification.php
+++ b/lib/Alchemy/Phrasea/Core/Configuration/ApplicationSpecification.php
@@ -134,12 +134,14 @@ class ApplicationSpecification implements Specification
$this->getConfigurationsFile();
$this->getConnexionsFile();
$this->getServicesFile();
+
return true;
}
catch (\Exception $e)
{
}
+
return false;
}
diff --git a/lib/Alchemy/Phrasea/Core/Service/Exception/ServiceNotFound.php b/lib/Alchemy/Phrasea/Core/Service/Exception/ServiceNotFound.php
index 986b51fdcc..237d734448 100644
--- a/lib/Alchemy/Phrasea/Core/Service/Exception/ServiceNotFound.php
+++ b/lib/Alchemy/Phrasea/Core/Service/Exception/ServiceNotFound.php
@@ -19,4 +19,4 @@ namespace Alchemy\Phrasea\Core\Service\Exception;
class ServiceNotFound extends \Exception
{
-}
\ No newline at end of file
+}
diff --git a/lib/Alchemy/Phrasea/Core/Service/Log/FirePHP.php b/lib/Alchemy/Phrasea/Core/Service/Log/FirePHP.php
index 819d6bdbec..071c819560 100644
--- a/lib/Alchemy/Phrasea/Core/Service/Log/FirePHP.php
+++ b/lib/Alchemy/Phrasea/Core/Service/Log/FirePHP.php
@@ -36,7 +36,7 @@ class FirePHP extends ServiceAbstract implements ServiceInterface
$this->logger = new Logger('FirePHP');
$this->logger->pushHandler(new FirePHPHandler());
-
+
return $this;
}
@@ -60,4 +60,4 @@ class FirePHP extends ServiceAbstract implements ServiceInterface
return array();
}
-}
\ No newline at end of file
+}
diff --git a/lib/Alchemy/Phrasea/Helper/Prod.php b/lib/Alchemy/Phrasea/Helper/Prod.php
index 511438b2b4..be3cf5fce3 100644
--- a/lib/Alchemy/Phrasea/Helper/Prod.php
+++ b/lib/Alchemy/Phrasea/Helper/Prod.php
@@ -35,10 +35,10 @@ class Prod extends Helper
$user = $this->getCore()->getAuthenticatedUser();
if(!$user instanceof \User_Adapter)
- {
+ {
return $search_datas;
}
-
+
$searchSet = $user->getPrefs('search');
foreach ($user->ACL()->get_granted_sbas() as $databox)
diff --git a/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php b/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php
index ce4728dbad..cfc1450340 100644
--- a/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php
+++ b/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php
@@ -121,7 +121,7 @@ class UserProvider implements ControlProviderInterface
public function getRessource($id)
{
$Core = \bootstrap::getCore();
-
+
return \User_Adapter::getInstance($id, \appbox::get_instance($Core));
}
diff --git a/lib/Doctrine/Repositories/StoryWZRepository.php b/lib/Doctrine/Repositories/StoryWZRepository.php
index 1e739a3844..8b1db19628 100644
--- a/lib/Doctrine/Repositories/StoryWZRepository.php
+++ b/lib/Doctrine/Repositories/StoryWZRepository.php
@@ -56,6 +56,7 @@ class StoryWZRepository extends EntityRepository
{
return 0;
}
+
return ($a < $b) ? -1 : 1;
});
diff --git a/lib/classes/API/OAuth2/Form/DevAppDesktop.class.php b/lib/classes/API/OAuth2/Form/DevAppDesktop.class.php
index b710f758c0..175eea6e4b 100644
--- a/lib/classes/API/OAuth2/Form/DevAppDesktop.class.php
+++ b/lib/classes/API/OAuth2/Form/DevAppDesktop.class.php
@@ -53,12 +53,12 @@ class API_OAuth2_Form_DevAppDesktop
/**
*
- * @var string
+ * @var string
*/
public $type;
public $scheme_website;
public $urlwebsite;
-
+
/**
*
* @param Request $request
@@ -116,7 +116,7 @@ class API_OAuth2_Form_DevAppDesktop
/**
*
- * @return string
+ * @return string
*/
public function getType()
{
@@ -132,7 +132,7 @@ class API_OAuth2_Form_DevAppDesktop
{
return $this->urlwebsite;
}
-
+
public function getSchemeCallback()
{
return '';
@@ -152,7 +152,8 @@ class API_OAuth2_Form_DevAppDesktop
$metadata->addPropertyConstraint('description', new Constraints\NotBlank($blank));
$metadata->addPropertyConstraint('urlwebsite', new Constraints\NotBlank($blank));
$metadata->addPropertyConstraint('urlwebsite', new Constraints\Url($url));
+
return;
}
-}
\ No newline at end of file
+}
diff --git a/lib/classes/API/OAuth2/Form/DevAppInternet.class.php b/lib/classes/API/OAuth2/Form/DevAppInternet.class.php
index bfde92cdde..4e93dca0a3 100644
--- a/lib/classes/API/OAuth2/Form/DevAppInternet.class.php
+++ b/lib/classes/API/OAuth2/Form/DevAppInternet.class.php
@@ -50,10 +50,10 @@ class API_OAuth2_Form_DevAppInternet
* @var string
*/
public $callback;
-
+
public $scheme_website;
public $scheme_callback;
-
+
public $urlwebsite;
public $urlcallback;
@@ -71,10 +71,10 @@ class API_OAuth2_Form_DevAppInternet
$this->scheme_website = $request->get('scheme-website', 'http://');
$this->scheme_callback = $request->get('scheme-callback', 'http://');
$this->type = API_OAuth2_Application::WEB_TYPE;
-
+
$this->urlwebsite = $this->scheme_website.$this->website;
$this->urlcallback = $this->scheme_callback.$this->callback;
-
+
return $this;
}
@@ -116,7 +116,7 @@ class API_OAuth2_Form_DevAppInternet
/**
*
- * @return string
+ * @return string
*/
public function getType()
{
@@ -159,6 +159,7 @@ class API_OAuth2_Form_DevAppInternet
$metadata->addPropertyConstraint('urlwebsite', new Constraints\Url($url));
$metadata->addPropertyConstraint('urlcallback', new Constraints\NotBlank($blank));
$metadata->addPropertyConstraint('urlcallback', new Constraints\Url($url));
+
return;
}
diff --git a/lib/classes/API/V1/adapter.class.php b/lib/classes/API/V1/adapter.class.php
index 5391d08f8a..6cacd688c8 100644
--- a/lib/classes/API/V1/adapter.class.php
+++ b/lib/classes/API/V1/adapter.class.php
@@ -207,7 +207,7 @@ class API_V1_adapter extends API_V1_Abstract
public function caption_records(Request $request, $databox_id, $record_id)
{
$result = new API_V1_result($request, $this);
-
+
$record = $this->appbox->get_databox($databox_id)->get_record($record_id);
$fields = $record->get_caption()->get_fields();
$ret = array();
@@ -220,9 +220,10 @@ class API_V1_adapter extends API_V1_Abstract
);
}
$result->set_datas($ret);
+
return $result;
}
-
+
/**
* Get an API_V1_result containing the results of a records search
*
diff --git a/lib/classes/Bridge/Api/Dailymotion/Container.class.php b/lib/classes/Bridge/Api/Dailymotion/Container.class.php
index 75cfda257c..d40265c2ec 100644
--- a/lib/classes/Bridge/Api/Dailymotion/Container.class.php
+++ b/lib/classes/Bridge/Api/Dailymotion/Container.class.php
@@ -130,17 +130,17 @@ class Bridge_Api_Dailymotion_Container implements Bridge_Api_ContainerInterface
{
return $this->url;
}
-
+
public function get_duration()
{
return '';
}
-
+
public function get_category()
{
return '';
}
-
+
public function is_private()
{
return null;
diff --git a/lib/classes/Bridge/Api/Flickr.class.php b/lib/classes/Bridge/Api/Flickr.class.php
index 9915ca8f7a..f99aa1fb25 100644
--- a/lib/classes/Bridge/Api/Flickr.class.php
+++ b/lib/classes/Bridge/Api/Flickr.class.php
@@ -377,6 +377,7 @@ class Bridge_Api_Flickr extends Bridge_Api_Abstract implements Bridge_Api_Interf
if (!$response->isOk())
{
if ($response->err_code === 3) //Already exists in photoset
+
return;
throw new Bridge_Exception_ApiConnectorRequestFailed();
}
@@ -663,12 +664,15 @@ class Bridge_Api_Flickr extends Bridge_Api_Abstract implements Bridge_Api_Interf
{
if (!$this->registry->get('GV_flickr_api'))
+
return false;
if (trim($this->registry->get('GV_flickr_client_id')) === '')
+
return false;
if (trim($this->registry->get('GV_flickr_client_secret')) === '')
+
return false;
return true;
diff --git a/lib/classes/Bridge/Api/Flickr/Container.class.php b/lib/classes/Bridge/Api/Flickr/Container.class.php
index b11dcfb831..b542d58058 100644
--- a/lib/classes/Bridge/Api/Flickr/Container.class.php
+++ b/lib/classes/Bridge/Api/Flickr/Container.class.php
@@ -138,17 +138,17 @@ class Bridge_Api_Flickr_Container implements Bridge_Api_ContainerInterface
return $this->type;
}
-
+
public function get_duration()
{
return '';
}
-
+
public function get_category()
{
return '';
}
-
+
public function is_private()
{
return null;
diff --git a/lib/classes/Bridge/Api/Youtube/Container.class.php b/lib/classes/Bridge/Api/Youtube/Container.class.php
index 28663f39e3..1775c17d9f 100644
--- a/lib/classes/Bridge/Api/Youtube/Container.class.php
+++ b/lib/classes/Bridge/Api/Youtube/Container.class.php
@@ -121,14 +121,14 @@ class Bridge_Api_Youtube_Container implements Bridge_Api_ContainerInterface
{
return '';
}
-
-
+
+
public function get_category()
{
return '';
}
-
-
+
+
public function is_private()
{
return null;
diff --git a/lib/classes/appbox.class.php b/lib/classes/appbox.class.php
index 2d68228088..7b10b21297 100644
--- a/lib/classes/appbox.class.php
+++ b/lib/classes/appbox.class.php
@@ -136,10 +136,12 @@ class appbox extends base
$custom_path.= $collection->get_base_id();
if (is_null($pathfile))
+
return $this;
$datas = file_get_contents($pathfile->getPathname());
if (is_null($datas))
+
return $this;
file_put_contents($file, $datas);
@@ -191,10 +193,12 @@ class appbox extends base
$custom_path.= $pic_type . '_' . $databox->get_sbas_id();
if (is_null($pathfile))
+
return $this;
$datas = file_get_contents($pathfile->getPathname());
if (is_null($datas))
+
return $this;
file_put_contents($file, $datas);
@@ -540,6 +544,7 @@ class appbox extends base
public function get_databoxes()
{
if ($this->databoxes)
+
return $this->databoxes;
$ret = array();
diff --git a/lib/classes/base.class.php b/lib/classes/base.class.php
index cd2cb38946..f5d87a5270 100644
--- a/lib/classes/base.class.php
+++ b/lib/classes/base.class.php
@@ -79,6 +79,7 @@ abstract class base implements cache_cacheableInterface
public function get_schema()
{
if ($this->schema)
+
return $this->schema;
$this->load_schema();
@@ -167,6 +168,7 @@ abstract class base implements cache_cacheableInterface
{
$this->cache = $this->Core->getCache();
}
+
return $this->cache;
}
@@ -232,6 +234,7 @@ abstract class base implements cache_cacheableInterface
{
if ($this->version)
+
return $this->version;
$version = '0.0.0';
@@ -260,8 +263,10 @@ abstract class base implements cache_cacheableInterface
public function upgradeavailable()
{
if ($this->get_version())
+
return version_compare(\Alchemy\Phrasea\Core\Version::getNumber(), $this->get_version(), '>');
else
+
return true;
}
@@ -399,6 +404,7 @@ abstract class base implements cache_cacheableInterface
protected function load_schema()
{
if ($this->schema)
+
return $this;
$structure = simplexml_load_file(__DIR__ . "/../../lib/conf.d/bases_structure.xml");
diff --git a/lib/classes/cache/databox.class.php b/lib/classes/cache/databox.class.php
index 9d35fa1e0c..c23a06ad21 100644
--- a/lib/classes/cache/databox.class.php
+++ b/lib/classes/cache/databox.class.php
@@ -59,6 +59,7 @@ class cache_databox
if ($date <= $last_update)
{
self::$refreshing = false;
+
return;
}
diff --git a/lib/classes/gatekeeper.class.php b/lib/classes/gatekeeper.class.php
index b829168ced..b37a216e12 100644
--- a/lib/classes/gatekeeper.class.php
+++ b/lib/classes/gatekeeper.class.php
@@ -79,6 +79,7 @@ class gatekeeper
$session = $appbox->get_session();
if (http_request::is_command_line())
+
return;
if (isset($_SERVER['PHP_SELF']) && trim($_SERVER['PHP_SELF']))
@@ -131,6 +132,7 @@ class gatekeeper
if ($this->_PHP_SELF == '/thesaurus2/xmlhttp/getterm.x.php'
|| $this->_PHP_SELF == '/thesaurus2/xmlhttp/searchcandidate.x.php'
|| $this->_PHP_SELF == '/thesaurus2/xmlhttp/getsy.x.php')
+
return;
phrasea::redirect('/login/?redirect=/thesaurus2');
break;
@@ -139,6 +141,7 @@ class gatekeeper
break;
case 'admin':
if ($this->_script_name === 'runscheduler.php')
+
return;
phrasea::redirect('/login/?redirect=' . $_SERVER['REQUEST_URI']);
break;
@@ -158,6 +161,7 @@ class gatekeeper
return;
case 'setup':
if ($appbox->upgradeavailable())
+
return;
else
phrasea::redirect('/login/');
@@ -274,6 +278,7 @@ class gatekeeper
$parm = $request->get_parms('LOG');
if (is_null($parm["LOG"]))
+
return $this;
try
diff --git a/lib/classes/module/console/fileEnsureDevSetting.class.php b/lib/classes/module/console/fileEnsureDevSetting.class.php
index e3596c54a3..8583dd0707 100644
--- a/lib/classes/module/console/fileEnsureDevSetting.class.php
+++ b/lib/classes/module/console/fileEnsureDevSetting.class.php
@@ -306,6 +306,7 @@ class module_console_fileEnsureDevSetting extends Command
$output->writeln(sprintf('
" . $name . " | " . $stat . " |