Skip to content

Commit 69ad926

Browse files
committed
Fix whitespace on config
1 parent 4645bf6 commit 69ad926

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

config/tagging.php

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
<?php
22

33
return [
4-
// Datatype for primary keys of your models.
5-
// used in migrations only
6-
'primary_keys_type' => 'integer', // 'string' or 'integer'
7-
8-
// Value of are passed through this before save of tags
9-
'normalizer' => '\Conner\Tagging\TaggingUtility::slug',
10-
11-
// Display value of tags are passed through (for front end display)
12-
'displayer' => '\Illuminate\Support\Str::title',
13-
14-
// Database connection for Conner\Taggable\Tag model to use
4+
// Datatype for primary keys of your models.
5+
// used in migrations only
6+
'primary_keys_type' => 'integer', // 'string' or 'integer'
7+
8+
// Value of are passed through this before save of tags
9+
'normalizer' => '\Conner\Tagging\TaggingUtility::slug',
10+
11+
// Display value of tags are passed through (for front end display)
12+
'displayer' => '\Illuminate\Support\Str::title',
13+
14+
// Database connection for Conner\Taggable\Tag model to use
1515
// 'connection' => 'mysql',
16-
17-
// When deleting a model, remove all the tags first
18-
'untag_on_delete' => true,
19-
20-
// Auto-delete unused tags from the 'tags' database table (when they are used zero times)
21-
'delete_unused_tags' => false,
2216

23-
// Model to use to store the tags in the database
24-
'tag_model'=>'\Conner\Tagging\Model\Tag',
17+
// When deleting a model, remove all the tags first
18+
'untag_on_delete' => true,
19+
20+
// Auto-delete unused tags from the 'tags' database table (when they are used zero times)
21+
'delete_unused_tags' => false,
22+
23+
// Model to use to store the tags in the database
24+
'tag_model' => '\Conner\Tagging\Model\Tag',
2525

26-
// Delimiter used within tags
27-
'delimiter' => '-',
26+
// Delimiter used within tags
27+
'delimiter' => '-',
2828

2929
'tag_model' => '\Conner\Tagging\Model\Tag',
3030

31-
'tagged_model' => '\Conner\Tagging\Model\Tagged',
31+
'tagged_model' => '\Conner\Tagging\Model\Tagged',
3232

3333
'tag_group_model' => '\Conner\Tagging\Model\TagGroup',
3434
];

0 commit comments

Comments
 (0)