Skip to content

Commit

Permalink
Merge pull request #15 from shorif2000/master
Browse files Browse the repository at this point in the history
support php7.0
  • Loading branch information
makasim authored Jul 30, 2018
2 parents 0936e6e + 5833b4a commit 8fd6928
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/HooksEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

class HooksEnum
{
public const PRE_SET_VALUE = 'pre_set_value';
public const PRE_ADD_VALUE = 'pre_add_value';
public const POST_SET_VALUE = 'post_set_value';
public const POST_SET_VALUES = 'post_set_values';
public const POST_ADD_VALUE = 'post_add_values';
public const POST_GET_VALUE = 'post_get_value';
const PRE_SET_VALUE = 'pre_set_value';
const PRE_ADD_VALUE = 'pre_add_value';
const POST_SET_VALUE = 'post_set_value';
const POST_SET_VALUES = 'post_set_values';
const POST_ADD_VALUE = 'post_add_values';
const POST_GET_VALUE = 'post_get_value';

public const POST_SET_OBJECT = 'post_set_object';
public const POST_ADD_OBJECT = 'post_add_object';
public const POST_BUILD_OBJECT = 'post_build_object';
public const POST_BUILD_SUB_OBJECT = 'post_build_sub_object';
public const GET_OBJECT_CLASS = 'get_object_class';
public const BUILD_OBJECT = 'build_object';
const POST_SET_OBJECT = 'post_set_object';
const POST_ADD_OBJECT = 'post_add_object';
const POST_BUILD_OBJECT = 'post_build_object';
const POST_BUILD_SUB_OBJECT = 'post_build_sub_object';
const GET_OBJECT_CLASS = 'get_object_class';
const BUILD_OBJECT = 'build_object';
}

0 comments on commit 8fd6928

Please sign in to comment.