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,27 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\Support\Facades;
4
-
5
-/**
6
- * @method static bool supported(string $key, string $cipher)
7
- * @method static string generateKey(string $cipher)
8
- * @method static string encrypt(mixed $value, bool $serialize = true)
9
- * @method static string encryptString(string $value)
10
- * @method static mixed decrypt(string $payload, bool $unserialize = true)
11
- * @method static string decryptString(string $payload)
12
- * @method static string getKey()
13
- *
14
- * @see \Illuminate\Encryption\Encrypter
15
- */
16
-class Crypt extends Facade
17
-{
18
-    /**
19
-     * Get the registered name of the component.
20
-     *
21
-     * @return string
22
-     */
23
-    protected static function getFacadeAccessor()
24
-    {
25
-        return 'encrypter';
26
-    }
27
-}
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,27 @@
1
+<?php
2
+
3
+namespace Illuminate\Support\Facades;
4
+
5
+/**
6
+ * @method static bool supported(string $key, string $cipher)
7
+ * @method static string generateKey(string $cipher)
8
+ * @method static string encrypt(mixed $value, bool $serialize = true)
9
+ * @method static string encryptString(string $value)
10
+ * @method static mixed decrypt(string $payload, bool $unserialize = true)
11
+ * @method static string decryptString(string $payload)
12
+ * @method static string getKey()
13
+ *
14
+ * @see \Illuminate\Encryption\Encrypter
15
+ */
16
+class Crypt extends Facade
17
+{
18
+    /**
19
+     * Get the registered name of the component.
20
+     *
21
+     * @return string
22
+     */
23
+    protected static function getFacadeAccessor()
24
+    {
25
+        return 'encrypter';
26
+    }
27
+}