Run cs-fixer

This commit is contained in:
ByteHamster 2024-02-04 21:31:20 +01:00
parent e2f0c95707
commit 6299ac4c0b
19 changed files with 61 additions and 61 deletions

View file

@ -27,7 +27,6 @@
namespace Baikal\Core;
use PDO;
use Symfony\Component\Yaml\Yaml;
/**
@ -71,7 +70,7 @@ class Server {
/**
* Reference to Database object.
*
* @var PDO
* @var \PDO
*/
protected $pdo;
@ -96,10 +95,10 @@ class Server {
* @param bool $enableCardDAV
* @param string $authType
* @param string $authRealm
* @param PDO $pdo
* @param \PDO $pdo
* @param string $baseUri
*/
function __construct($enableCalDAV, $enableCardDAV, $authType, $authRealm, PDO $pdo, $baseUri) {
function __construct($enableCalDAV, $enableCardDAV, $authType, $authRealm, \PDO $pdo, $baseUri) {
$this->enableCalDAV = $enableCalDAV;
$this->enableCardDAV = $enableCardDAV;
$this->authType = $authType;

View file

@ -246,7 +246,7 @@ class Calendar extends \Flake\Core\Model\Db {
$rSql = $GLOBALS["DB"]->exec_SELECTquery(
"count(*)",
"calendarinstances",
"calendarid" . "='" . $this->aData["calendarid"] . "'"
"calendarid='" . $this->aData["calendarid"] . "'"
);
if (($aRs = $rSql->fetch()) === false) {

View file

@ -40,7 +40,7 @@ class Calendar extends \Flake\Core\Model\Db {
$rSql = $GLOBALS["DB"]->exec_SELECTquery(
"count(*)",
"calendarinstances",
"calendarid" . "='" . $this->aData["id"] . "'"
"calendarid='" . $this->aData["id"] . "'"
);
if (($aRs = $rSql->fetch()) === false) {

View file

@ -68,9 +68,9 @@ abstract class Config extends \Flake\Core\Model\NoDb {
function writable() {
return (
@file_exists(PROJECT_PATH_CONFIG . "baikal.yaml") &&
@is_file(PROJECT_PATH_CONFIG . "baikal.yaml") &&
@is_writable(PROJECT_PATH_CONFIG . "baikal.yaml")
@file_exists(PROJECT_PATH_CONFIG . "baikal.yaml")
&& @is_file(PROJECT_PATH_CONFIG . "baikal.yaml")
&& @is_writable(PROJECT_PATH_CONFIG . "baikal.yaml")
);
}

View file

@ -39,7 +39,7 @@ class User extends \Flake\Core\Model\Db {
"digesta1" => "",
];
protected $oIdentityPrincipal = null;
protected $oIdentityPrincipal;
function initByPrimary($sPrimary) {
parent::initByPrimary($sPrimary);

View file

@ -108,7 +108,7 @@ class Initialize extends \Flake\Core\Controller {
exit(0);
#$sMessage = "<p>Baïkal is now configured. You may <a class='btn btn-success' href='" . PROJECT_URI . "admin/'>Access the Baïkal admin</a></p>";
#$sForm = "";
#$sForm = "";
} else {
$sMessage = "";
$sForm = $this->oForm->render();

View file

@ -387,7 +387,7 @@ CREATE TABLE calendarinstances (
UNIQUE (calendarid, share_href)
);
SQL
);
);
$this->aSuccess[] = 'Created calendarinstances table';
$pdo->exec('
INSERT INTO calendarinstances
@ -426,7 +426,7 @@ CREATE TABLE calendars (
components text NOT NULL
);
SQL
);
);
$this->aSuccess[] = 'Created new calendars table';
} else { // mysql
$pdo->exec(<<<SQL
@ -450,7 +450,7 @@ CREATE TABLE calendarinstances (
UNIQUE(calendarid, share_href)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
SQL
);
);
$this->aSuccess[] = 'Created calendarinstances table';
$pdo->exec('
INSERT INTO calendarinstances
@ -489,14 +489,14 @@ CREATE TABLE calendars (
components VARBINARY(21)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
SQL
);
);
$this->aSuccess[] = 'Created new calendars table';
}
$pdo->exec(<<<SQL
INSERT INTO calendars (id, synctoken, components) SELECT id, COALESCE(synctoken,1) as synctoken, COALESCE(components,"VEVENT,VTODO,VJOURNAL") as components FROM $calendarBackup
SQL
);
);
$this->aSuccess[] = 'Migrated calendars table';
}
if (version_compare($sVersionFrom, '0.9.4', '<')) {

View file

@ -48,9 +48,9 @@ class Topbar extends \Flake\Core\Controller {
$sActiveHome = "active";
}
if (
$sCurrentRoute === $GLOBALS["ROUTER"]::getRouteForController("\BaikalAdmin\Controller\Users") ||
$sCurrentRoute === $GLOBALS["ROUTER"]::getRouteForController("\BaikalAdmin\Controller\User\Calendars") ||
$sCurrentRoute === $GLOBALS["ROUTER"]::getRouteForController("\BaikalAdmin\Controller\User\AddressBooks")
$sCurrentRoute === $GLOBALS["ROUTER"]::getRouteForController("\BaikalAdmin\Controller\Users")
|| $sCurrentRoute === $GLOBALS["ROUTER"]::getRouteForController("\BaikalAdmin\Controller\User\Calendars")
|| $sCurrentRoute === $GLOBALS["ROUTER"]::getRouteForController("\BaikalAdmin\Controller\User\AddressBooks")
) {
$sActiveUsers = "active";
}

View file

@ -171,8 +171,8 @@ class Database extends \Flake\Core\Controller {
} catch (\Exception $e) {
$oForm->declareError(
$oMorpho->element("sqlite_file"),
"Baïkal was not able to establish a connexion to the SQLite database as configured.<br />SQLite says: " . $e->getMessage() . (string) $e
);
"Baïkal was not able to establish a connexion to the SQLite database as configured.<br />SQLite says: " . $e->getMessage() . (string) $e
);
}
}
}

View file

@ -456,7 +456,7 @@ CSS;
CSS;
}
$sCss = "\n" . "/* " . count($aSprites) . " glyphs, generated on " . strftime("%Y-%m-%d %H:%M:%S") . "; C=" . $iCols . "; R=" . $iRows . "; W=" . $iPngWidth . "; H=" . $iPngHeight . "; PREFIX=" . $sClassPrefix . " */\n" . $sCss;
$sCss = "\n/* " . count($aSprites) . " glyphs, generated on " . strftime("%Y-%m-%d %H:%M:%S") . "; C=" . $iCols . "; R=" . $iRows . "; W=" . $iPngWidth . "; H=" . $iPngHeight . "; PREFIX=" . $sClassPrefix . " */\n" . $sCss;
return $sCss;
}

View file

@ -90,9 +90,9 @@ class Cli extends \Flake\Core\Render\Container {
function header($sMsg) {
$sStr = "\n" . str_repeat("#", 80);
$sStr .= "\n" . "#" . str_repeat(" ", 78) . "#";
$sStr .= "\n" . "#" . str_pad(strtoupper($sMsg), 78, " ", STR_PAD_BOTH) . "#";
$sStr .= "\n" . "#" . str_repeat(" ", 78) . "#";
$sStr .= "\n#" . str_repeat(" ", 78) . "#";
$sStr .= "\n#" . str_pad(strtoupper($sMsg), 78, " ", STR_PAD_BOTH) . "#";
$sStr .= "\n#" . str_repeat(" ", 78) . "#";
$sStr .= "\n" . str_repeat("#", 80);
$sStr .= "\n";

View file

@ -175,14 +175,14 @@ class Collection extends \Flake\Core\FLObject implements \Iterator {
function &__call($sName, $aArguments) {
if (
strlen($sName) > 7 &&
$sName[0] === "s" &&
$sName[1] === "e" &&
$sName[2] === "t" &&
$sName[3] === "M" &&
$sName[4] === "e" &&
$sName[5] === "t" &&
$sName[6] === "a"
strlen($sName) > 7
&& $sName[0] === "s"
&& $sName[1] === "e"
&& $sName[2] === "t"
&& $sName[3] === "M"
&& $sName[4] === "e"
&& $sName[5] === "t"
&& $sName[6] === "a"
) {
$sKey = strtolower(substr($sName, 7, 1)) . substr($sName, 8);
$mValue = &$aArguments[0];
@ -199,14 +199,14 @@ class Collection extends \Flake\Core\FLObject implements \Iterator {
return $res; # To avoid 'Notice: Only variable references should be returned by reference'
} elseif (
strlen($sName) > 7 &&
$sName[0] === "g" &&
$sName[1] === "e" &&
$sName[2] === "t" &&
$sName[3] === "M" &&
$sName[4] === "e" &&
$sName[5] === "t" &&
$sName[6] === "a"
strlen($sName) > 7
&& $sName[0] === "g"
&& $sName[1] === "e"
&& $sName[2] === "t"
&& $sName[3] === "M"
&& $sName[4] === "e"
&& $sName[5] === "t"
&& $sName[6] === "a"
) {
$sKey = strtolower(substr($sName, 7, 1)) . substr($sName, 8);
if (array_key_exists($sKey, $this->aMeta)) {

View file

@ -46,6 +46,7 @@ abstract class Controller extends \Flake\Core\FLObject {
# TODO: il faut remplacer le mécanisme basé sur un nombre variable de paramètres en un mécanisme basé sur un seul paramètre "tableau"
#$aParams = func_get_args();
$sController = "\\" . get_called_class();
#array_unshift($aParams, $sController); # Injecting current controller as first param
#return call_user_func_array($GLOBALS["ROUTER"] . "::buildRouteForController", $aParams);
return $GLOBALS["ROUTER"]::buildRouteForController($sController, $aParams);

View file

@ -28,7 +28,7 @@
namespace Flake\Core\Database;
class Statement extends \Flake\Core\FLObject {
protected $stmt = null;
protected $stmt;
function __construct($stmt) {
$this->stmt = $stmt;

View file

@ -28,8 +28,8 @@
namespace Flake\Core\Datastructure;
abstract class ChainLink implements \Flake\Core\Datastructure\Chainable {
protected $__container = null;
protected $__key = null;
protected $__container;
protected $__key;
function chain(Chain $container, $key) {
$this->__container = $container;

View file

@ -211,7 +211,7 @@ class Framework extends \Flake\Core\Framework {
if (isset($config["system"]["base_uri"]) && $config["system"]["base_uri"] !== "") {
// SabreDAV needs a "/" at the beginning of BASEURL
define("PROJECT_BASEURI",
self::prependSlash(self::appendSlash($config["system"]["base_uri"])));
self::prependSlash(self::appendSlash($config["system"]["base_uri"])));
define("PROJECT_URI", \Flake\Util\Tools::getCurrentProtocol() . "://"
. $_SERVER["HTTP_HOST"] . PROJECT_BASEURI);

View file

@ -342,10 +342,10 @@ class Tools extends \Flake\Core\FLObject {
</html>
TEST;
$sHeaders = "From: " . $sFromName . "<" . $sFromAddress . ">" . "\r\n";
$sHeaders .= "Reply-To: " . $sReplyToName . "<" . $sReplyToAddress . ">" . "\r\n";
$sHeaders .= "Bcc: " . $sReplyToName . "<" . $sReplyToAddress . ">" . "\r\n";
$sHeaders .= "Content-Type: text/html" . "\r\n";
$sHeaders = "From: " . $sFromName . "<" . $sFromAddress . ">\r\n";
$sHeaders .= "Reply-To: " . $sReplyToName . "<" . $sReplyToAddress . ">\r\n";
$sHeaders .= "Bcc: " . $sReplyToName . "<" . $sReplyToAddress . ">\r\n";
$sHeaders .= "Content-Type: text/html\r\n";
mail($sToAddress, $sSubject, $sMessage, $sHeaders);
}
@ -761,14 +761,14 @@ TEST;
$data = "";
if ($bodylen > 0) {
switch ($method) {
case 8:
// Currently the only supported compression method:
$data = gzinflate($body, $maxlength);
break;
default:
$error = "Unknown compression method.";
case 8:
// Currently the only supported compression method:
$data = gzinflate($body, $maxlength);
break;
default:
$error = "Unknown compression method.";
return false;
return false;
}
} // zero-byte body content is allowed
// Verifiy CRC32

View file

@ -38,15 +38,15 @@ class Form {
"hook.validation" => false,
"hook.morphology" => false,
];
protected $oModelInstance = null;
protected $oElements = null;
protected $oModelInstance;
protected $oElements;
protected $aErrors = [];
protected $bPersisted = null; # TRUE when form has persisted; available only after execute
protected $bPersisted; # TRUE when form has persisted; available only after execute
protected $sDisplayTitle = ""; # Displayed form title; generated in setModelInstance()
protected $sDisplayMessage = ""; # Displayed confirm message; generated in execute()
protected $oMorpho = null;
protected $oMorpho;
function __construct($sModelClass, $aOptions = []) {
$this->sModelClass = $sModelClass;

View file

@ -28,7 +28,7 @@
namespace Formal\Form;
class Morphology {
protected $oElements = null;
protected $oElements;
function __construct() {
$this->oElements = new \Flake\Core\CollectionTyped("\Formal\Element");