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

initial commmit de la branche Nude with composer

git authored on 14/03/2019 16:48:02
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,16 +0,0 @@
1
-<?php
2
-/**
3
- * Created by PhpStorm.
4
- * User: roy
5
- * Date: 05/03/2019
6
- * Time: 16:08
7
- */
8
-class Tri{
9
-
10
-    public static function cmp($a,$b){
11
-        if ($a == $b) {
12
-            return 0;
13
-        }
14
-        return ($a < $b) ? -1 : 1;
15
-    }
16
-}
17 0
\ No newline at end of file
Browse code

commit initial de la branch template-meny

git authored on 14/03/2019 10:30:11
Showing 1 changed files
... ...
@@ -7,11 +7,6 @@
7 7
  */
8 8
 class Tri{
9 9
 
10
-    public static function cmpVlanInArray($a, $b)
11
-    {
12
-        return Tri::cmp($a["n_vlan"], $b["n_vlan"]);
13
-    }
14
-
15 10
     public static function cmp($a,$b){
16 11
         if ($a == $b) {
17 12
             return 0;
Browse code

liaison controlleur et vues ok !

git authored on 05/03/2019 16:49:15
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,21 @@
1
+<?php
2
+/**
3
+ * Created by PhpStorm.
4
+ * User: roy
5
+ * Date: 05/03/2019
6
+ * Time: 16:08
7
+ */
8
+class Tri{
9
+
10
+    public static function cmpVlanInArray($a, $b)
11
+    {
12
+        return Tri::cmp($a["n_vlan"], $b["n_vlan"]);
13
+    }
14
+
15
+    public static function cmp($a,$b){
16
+        if ($a == $b) {
17
+            return 0;
18
+        }
19
+        return ($a < $b) ? -1 : 1;
20
+    }
21
+}
0 22
\ No newline at end of file