Test Failed
Pull Request — master (#61)
by
unknown
02:25
created
src/Conversation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     /**
48 48
      * Create a new class instance.
49 49
      *
50
-     * @return void
50
+     * @return boolean|string
51 51
      */
52 52
     public function __construct()
53 53
     {
Please login to merge, or discard this patch.
src/SideBar.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * Create a new class instance.
47 47
      *
48
-     * @return void
48
+     * @return integer
49 49
      */
50 50
     public function __construct()
51 51
     {
Please login to merge, or discard this patch.
src/User.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      * Getting User details on the basis of uername or login Id
62 62
      *
63 63
      * @param string  $details To store loginid/username
64
-     * @param boollen $para    To store True/False
64
+     * @param boolean $para    To store True/False
65 65
      *
66 66
      * @return array or null
67 67
      */
Please login to merge, or discard this patch.
src/Receiver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     /**
48 48
      * Create a new class instance.
49 49
      *
50
-     * @return void
50
+     * @return boolean|string
51 51
      */
52 52
     public function __construct()
53 53
     {
Please login to merge, or discard this patch.
views/message.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
   <script src="../public/assests/js/jquery-3.0.0.min.js"></script>
25 25
   <script src="../public/assests/js/bootstrap.min.js"></script>
26 26
   <?php 
27
-  $userId = Session::get('start');
28
-  $data = Profile::getProfile($userId);?>
27
+    $userId = Session::get('start');
28
+    $data = Profile::getProfile($userId);?>
29 29
   <script type="text/javascript" src="../public/assests/js/message.js" id="heading-avatar" data-src="<?php echo !empty($data["pic"]) ? $data["pic"] : '../../public/assests/img/ankit.png';?>"></script>
30 30
 </head>
31 31
 <body>
Please login to merge, or discard this patch.