Compare commits

..

3 Commits

Author SHA1 Message Date
756c652a07 Composer : Activate the namespace 2021-05-06 19:54:35 +02:00
4f0630de3e DomCi 2021-05-06 19:54:27 +02:00
Dominique FOURNIER
350f0c50a7 Add tags in .gitignore 2021-05-06 15:39:57 +02:00
4 changed files with 9 additions and 2 deletions

1
.gitignore vendored
View File

@@ -3,3 +3,4 @@
/doc /doc
/flags /flags
/test /test
tags

View File

@@ -1,5 +1,5 @@
{ {
"name": "domframework", "name": "dominiquefournier/domframework",
"description": "DomFramework is a small PHP Framework. Database abstraction, authentication methods, routing, sessions are the keyword", "description": "DomFramework is a small PHP Framework. Database abstraction, authentication methods, routing, sessions are the keyword",
"keywords": [ "keywords": [
"filesystem", "filesystems", "files", "storage", "orm", "mail", "filesystem", "filesystems", "files", "storage", "orm", "mail",
@@ -14,5 +14,10 @@
], ],
"require": { "require": {
"php": ">=7.0.0" "php": ">=7.0.0"
},
"scripts" : {
"post-file-download": [
"sed -i 's#//namespace Domframework#namespace Domframework#' *.php"
]
} }
} }

View File

@@ -99,7 +99,7 @@ class sse
// }}} // }}}
/** The optional handler to use in DataOnly. Must be callable method /** The optional handler to use in DataOnly. Must be callable method
* @param callable|null $handler * @param callable|null $handler The handler
* If callable is null, remove the handler for this event * If callable is null, remove the handler for this event
* @param mixed... $params The optional needed parameters * @param mixed... $params The optional needed parameters
*/ */

View File

@@ -353,6 +353,7 @@ class main
/** Ask a question to the user and return the answer /** Ask a question to the user and return the answer
* @param string $question the question message * @param string $question the question message
* @param string|null $proposal The optional pre-filled proposal
* @return string The answer * @return string The answer
*/ */
public function ask ($question, $proposal = "") public function ask ($question, $proposal = "")