@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | use Silk\Hook; |
| 4 | 4 | |
| 5 | -if (! function_exists('on')) : |
|
| 5 | +if ( ! function_exists('on')) : |
|
| 6 | 6 | /** |
| 7 | 7 | * Create and set a new event listener |
| 8 | 8 | * |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | } |
| 20 | 20 | endif; |
| 21 | 21 | |
| 22 | -if (! function_exists('off')) : |
|
| 22 | +if ( ! function_exists('off')) : |
|
| 23 | 23 | /** |
| 24 | 24 | * Remove an event listener |
| 25 | 25 | * |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | return $removed; |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | - return on($handle, function ($given = null) use ($handle, $callback, $priority) { |
|
| 38 | + return on($handle, function($given = null) use ($handle, $callback, $priority) { |
|
| 39 | 39 | remove_filter($handle, $callback, $priority); |
| 40 | 40 | return $given; |
| 41 | 41 | })->withPriority($priority - 1); |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | */ |
| 70 | 70 | protected function handler() |
| 71 | 71 | { |
| 72 | - return ''; // Override this in a sub-class |
|
| 72 | + return ''; // Override this in a sub-class |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | /** |
@@ -61,10 +61,10 @@ |
||
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | - * Call the shortcode's handler and return the output. |
|
| 65 | - * |
|
| 66 | - * @return mixed Rendered shortcode output |
|
| 67 | - */ |
|
| 64 | + * Call the shortcode's handler and return the output. |
|
| 65 | + * |
|
| 66 | + * @return mixed Rendered shortcode output |
|
| 67 | + */ |
|
| 68 | 68 | public function render() |
| 69 | 69 | { |
| 70 | 70 | $dedicated_method = "{$this->tag}_handler"; |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | $modelClass = $this->model ? get_class($this->model) : Post::class; |
| 74 | 74 | |
| 75 | 75 | return Collection::make($this->query->get_posts()) |
| 76 | - ->map(function ($post) use ($modelClass) { |
|
| 76 | + ->map(function($post) use ($modelClass) { |
|
| 77 | 77 | return new $modelClass($post); |
| 78 | 78 | }); |
| 79 | 79 | } |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | * Adapted from Str::snake() |
| 50 | 50 | * @link https://github.com/laravel/framework/blob/5.2/src/Illuminate/Support/Str.php |
| 51 | 51 | */ |
| 52 | - if (! ctype_lower($name)) { |
|
| 52 | + if ( ! ctype_lower($name)) { |
|
| 53 | 53 | $name = strtolower(preg_replace('/(.)(?=[A-Z])/u', '$1_', $name)); |
| 54 | 54 | } |
| 55 | 55 | |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | */ |
| 62 | 62 | public static function load($slug) |
| 63 | 63 | { |
| 64 | - if (! $object = get_post_type_object($slug)) { |
|
| 64 | + if ( ! $object = get_post_type_object($slug)) { |
|
| 65 | 65 | throw new NonExistentPostTypeException("No post type exists with name '$slug'."); |
| 66 | 66 | } |
| 67 | 67 | |
@@ -98,12 +98,12 @@ discard block |
||
| 98 | 98 | */ |
| 99 | 99 | public function supports($features) |
| 100 | 100 | { |
| 101 | - if (! is_array($features)) { |
|
| 101 | + if ( ! is_array($features)) { |
|
| 102 | 102 | $features = func_get_args(); |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | return ! collect($features) |
| 106 | - ->contains(function ($key, $feature) { |
|
| 106 | + ->contains(function($key, $feature) { |
|
| 107 | 107 | return ! post_type_supports($this->slug, $feature); |
| 108 | 108 | }); |
| 109 | 109 | } |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | public function removeSupportFor($features) |
| 131 | 131 | { |
| 132 | 132 | collect(is_array($features) ? $features : func_get_args()) |
| 133 | - ->each(function ($features) { |
|
| 133 | + ->each(function($features) { |
|
| 134 | 134 | remove_post_type_support($this->slug, $features); |
| 135 | 135 | }); |
| 136 | 136 | |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | */ |
| 145 | 145 | public function unregister() |
| 146 | 146 | { |
| 147 | - if (! static::exists($this->slug)) { |
|
| 147 | + if ( ! static::exists($this->slug)) { |
|
| 148 | 148 | throw new NonExistentPostTypeException("No post type exists with name '{$this->slug}'."); |
| 149 | 149 | } |
| 150 | 150 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | /** |
| 84 | 84 | * Get the post type object. |
| 85 | 85 | * |
| 86 | - * @return object |
|
| 86 | + * @return stdClass |
|
| 87 | 87 | */ |
| 88 | 88 | public function object() |
| 89 | 89 | { |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | * @param string,...|array $features string - First feature of possible many, |
| 97 | 97 | * array - Many features to check support for. |
| 98 | 98 | * |
| 99 | - * @return mixed |
|
| 99 | + * @return boolean |
|
| 100 | 100 | */ |
| 101 | 101 | public function supports($features) |
| 102 | 102 | { |
@@ -3,10 +3,8 @@ |
||
| 3 | 3 | namespace Silk\Post; |
| 4 | 4 | |
| 5 | 5 | use stdClass; |
| 6 | -use InvalidArgumentException; |
|
| 7 | 6 | use Illuminate\Support\Collection; |
| 8 | 7 | use Silk\Exception\WP_ErrorException; |
| 9 | -use Silk\Post\Exception\InvalidPostTypeNameException; |
|
| 10 | 8 | use Silk\Post\Exception\NonExistentPostTypeException; |
| 11 | 9 | use Silk\Post\PostTypeBuilder; |
| 12 | 10 | |
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | */ |
| 75 | 75 | public function supports($features) |
| 76 | 76 | { |
| 77 | - if (! is_array($features)) { |
|
| 77 | + if ( ! is_array($features)) { |
|
| 78 | 78 | $features = func_get_args(); |
| 79 | 79 | } |
| 80 | 80 | |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | */ |
| 50 | 50 | public function collect() |
| 51 | 51 | { |
| 52 | - return Collection::make($this->toArray())->map(function ($value, $key) { |
|
| 52 | + return Collection::make($this->toArray())->map(function($value, $key) { |
|
| 53 | 53 | return new Meta($this->type, $this->id, $key); |
| 54 | 54 | }); |
| 55 | 55 | } |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | */ |
| 122 | 122 | public function mediateCallback($given = null) |
| 123 | 123 | { |
| 124 | - if (! $this->shouldInvoke(func_get_args())) { |
|
| 124 | + if ( ! $this->shouldInvoke(func_get_args())) { |
|
| 125 | 125 | return $given; |
| 126 | 126 | } |
| 127 | 127 | |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | * Check if any of the conditions returns false, |
| 146 | 146 | * if so, do not invoke. |
| 147 | 147 | */ |
| 148 | - return ! $this->conditions()->contains(function ($key, $callback) use ($arguments) { |
|
| 148 | + return ! $this->conditions()->contains(function($key, $callback) use ($arguments) { |
|
| 149 | 149 | return false === $callback->callArray($arguments); |
| 150 | 150 | }); |
| 151 | 151 | } |
@@ -22,8 +22,8 @@ |
||
| 22 | 22 | return new Sami($iterator, array( |
| 23 | 23 | 'versions' => $versions, |
| 24 | 24 | 'title' => 'Silk API', |
| 25 | - 'build_dir' => __DIR__ . '/../../silk-api-docs/%version%', |
|
| 26 | - 'cache_dir' => __DIR__ . '/../../silk-api-docs-cache/%version%', |
|
| 25 | + 'build_dir' => __DIR__.'/../../silk-api-docs/%version%', |
|
| 26 | + 'cache_dir' => __DIR__.'/../../silk-api-docs-cache/%version%', |
|
| 27 | 27 | 'remote_repository' => new GitHubRemoteRepository('aaemnnosttv/silk', $repository_root), |
| 28 | 28 | 'default_opened_level' => 2, |
| 29 | 29 | )); |