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

Application modulaire fonctionnelle !

Emmanuel ROY authored on 12/08/2019 15:10:25
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,28 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\Contracts\Encryption;
4
-
5
-interface Encrypter
6
-{
7
-    /**
8
-     * Encrypt the given value.
9
-     *
10
-     * @param  mixed  $value
11
-     * @param  bool  $serialize
12
-     * @return string
13
-     *
14
-     * @throws \Illuminate\Contracts\Encryption\EncryptException
15
-     */
16
-    public function encrypt($value, $serialize = true);
17
-
18
-    /**
19
-     * Decrypt the given value.
20
-     *
21
-     * @param  string  $payload
22
-     * @param  bool  $unserialize
23
-     * @return mixed
24
-     *
25
-     * @throws \Illuminate\Contracts\Encryption\DecryptException
26
-     */
27
-    public function decrypt($payload, $unserialize = true);
28
-}
Browse code

initial commit

Emmanuel ROY authored on 09/08/2019 08:39:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,28 @@
1
+<?php
2
+
3
+namespace Illuminate\Contracts\Encryption;
4
+
5
+interface Encrypter
6
+{
7
+    /**
8
+     * Encrypt the given value.
9
+     *
10
+     * @param  mixed  $value
11
+     * @param  bool  $serialize
12
+     * @return string
13
+     *
14
+     * @throws \Illuminate\Contracts\Encryption\EncryptException
15
+     */
16
+    public function encrypt($value, $serialize = true);
17
+
18
+    /**
19
+     * Decrypt the given value.
20
+     *
21
+     * @param  string  $payload
22
+     * @param  bool  $unserialize
23
+     * @return mixed
24
+     *
25
+     * @throws \Illuminate\Contracts\Encryption\DecryptException
26
+     */
27
+    public function decrypt($payload, $unserialize = true);
28
+}