aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/libs/plugins/modifier.explode.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/smarty/smarty/libs/plugins/modifier.explode.php')
-rw-r--r--vendor/smarty/smarty/libs/plugins/modifier.explode.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/vendor/smarty/smarty/libs/plugins/modifier.explode.php b/vendor/smarty/smarty/libs/plugins/modifier.explode.php
deleted file mode 100644
index 5186fde3d..000000000
--- a/vendor/smarty/smarty/libs/plugins/modifier.explode.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-/**
- * Smarty plugin
- *
- * @package Smarty
- * @subpackage PluginsModifier
- */
-
-/**
- * Smarty explode modifier plugin
- * Type: modifier
- * Name: explode
- * Purpose: split a string by a string
- *
- * @param string $separator
- * @param string $string
- * @param int|null $limit
- *
- * @return array
- */
-function smarty_modifier_explode($separator, $string, ?int $limit = null)
-{
- // provide $string default to prevent deprecation errors in PHP >=8.1
- return explode($separator, $string ?? '', $limit ?? PHP_INT_MAX);
-}