Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Version fonctionnelle de base

Emmanuel ROY authored on 13/06/2017 22:54:16
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,41 +0,0 @@
1
-<?php
2
-/**
3
- * Fichier d'exemple pour une
4
- * fonction statique dans une
5
- * classe
6
- * 
7
- * @category Application
8
- * @package Main
9
- * @copyright Moi 2012
10
- * @author Moi <moi@mail.com>
11
- * @license	Proprio http://monsite.com/license
12
- * @version Release 1 (2012-03-28)
13
- * 
14
- * @param unknown_type $test 
15
- */
16
-
17
-/**
18
- * Classe qui ne sert à rien
19
- * @category Application
20
- * @package Main
21
- * @copyright Moi 2012
22
- * @author Moi <moi@mail.com>
23
- * @license	Proprio http://monsite.com/license
24
- * @version Release 1 (2012-03-28)
25
- * 
26
- * @param unknown_type $test 
27
- */
28
-class Main
29
-{
30
-    
31
-    /**
32
-     * Fonction qui renvoiie l'inverse de son
33
-     * paramètre
34
-     * @param boolean $test
35
-     * @return boolean
36
-     */
37
-    function test ($test = false)
38
-    {
39
-        return !$test;
40
-    } 
41
-}
Browse code

first commit

ER authored on 30/03/2012 09:12:56
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,41 @@
1
+<?php
2
+/**
3
+ * Fichier d'exemple pour une
4
+ * fonction statique dans une
5
+ * classe
6
+ * 
7
+ * @category Application
8
+ * @package Main
9
+ * @copyright Moi 2012
10
+ * @author Moi <moi@mail.com>
11
+ * @license	Proprio http://monsite.com/license
12
+ * @version Release 1 (2012-03-28)
13
+ * 
14
+ * @param unknown_type $test 
15
+ */
16
+
17
+/**
18
+ * Classe qui ne sert à rien
19
+ * @category Application
20
+ * @package Main
21
+ * @copyright Moi 2012
22
+ * @author Moi <moi@mail.com>
23
+ * @license	Proprio http://monsite.com/license
24
+ * @version Release 1 (2012-03-28)
25
+ * 
26
+ * @param unknown_type $test 
27
+ */
28
+class Main
29
+{
30
+    
31
+    /**
32
+     * Fonction qui renvoiie l'inverse de son
33
+     * paramètre
34
+     * @param boolean $test
35
+     * @return boolean
36
+     */
37
+    function test ($test = false)
38
+    {
39
+        return !$test;
40
+    } 
41
+}