1 <?php
2
3 /*
4 * To change this license header, choose License Headers in Project Properties.
5 * To change this template file, choose Tools | Templates
6 * and open the template in the editor.
7 */
8
9 namespace nk2580\wordsmith\Utillities;
10
11 /**
12 * Description of Cypher
13 *
14 * @author accounts
15 */
16 class Cypher extends \Illuminate\Encryption\Encrypter {
17
18 public function __construct($key) {
19 parent::__construct($key);
20 }
21
22 }
23