Completed
Push — master ( f43027...ed76a1 )
by Antonio Carlos
08:33
created
src/migrations/2015_03_07_311071_create_tracker_queries_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->string('query')->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311070_create_tracker_paths_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->string('path')->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311082_create_tracker_sessions_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->string('uuid')->unique()->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311085_create_tracker_log_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->bigInteger('session_id')->unsigned()->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311077_create_tracker_cookies_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->string('uuid')->unique();
Please login to merge, or discard this patch.
src/Support/Cache.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -99,6 +99,9 @@
 block discarded – undo
99 99
         ];
100 100
     }
101 101
 
102
+    /**
103
+     * @param string|null $identifier
104
+     */
102 105
     public function makeCacheKey($attributes, $keys, $identifier)
103 106
     {
104 107
         $attributes = $this->extractAttributes($attributes);
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311079_create_tracker_domains_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->string('name')->index();
Please login to merge, or discard this patch.
migrations/2015_03_07_311089_create_tracker_sql_query_bindings_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->string('sha1', 40)->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311073_create_tracker_routes_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->string('name')->index();
Please login to merge, or discard this patch.