Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed May 10, 2021
1 parent b582dba commit 4123de2
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions Core/lib/array/first.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ function df_head(array $a) {return array_slice($a, 0, -1);}
* @used-by \Dfe\Stripe\W\Handler\Charge\Refunded::amount()
* @used-by \Dfe\Stripe\W\Handler\Charge\Refunded::eTransId()
* @used-by \KingPalm\Core\Plugin\Aitoc\OrdersExportImport\Model\Processor\Config\ExportConfigMapper::aroundToConfig()
* @used-by \TFC\Core\Router::match() (tradefurniturecompany.co.uk, https://github.com/tradefurniturecompany/core/issues/40)
* @param mixed[] $array
* @return mixed|null
*/
Expand Down
1 change: 1 addition & 0 deletions Core/lib/object/om.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ function df_is_virtual($c) {return !!dfa(df_virtual_types(), $c);}

/**
* 2015-08-13
* @used-by df_action_create()
* @used-by df_address_h()
* @used-by df_att_set_r()
* @used-by df_auth()
Expand Down
1 change: 1 addition & 0 deletions Core/lib/text/explode.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ function df_explode_n($s) {return explode("\n", df_normalize(df_trim($s)));}
function df_explode_path($p) {return df_explode_xpath(df_path_n($p));}

/**
* @used-by \TFC\Core\Router::match() (tradefurniturecompany.co.uk, https://github.com/tradefurniturecompany/core/issues/40)
* @param string $url
* @return string[]
*/
Expand Down
9 changes: 9 additions & 0 deletions Framework/lib/app/action.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
use Magento\Framework\App\ActionFactory;
use Magento\Framework\App\ActionInterface as IAction;
use Magento\Framework\App\Action\Forward as Forward;
use Magento\Framework\App\Action\Redirect;

/**
* 2017-05-04
* @used-by df_action_c_forward()
* @used-by df_action_c_redirect()
* @param string $c
* @return IAction
*/
Expand All @@ -22,6 +24,13 @@ function df_action_create($c) {
*/
function df_action_c_forward() {return df_action_create(Forward::class);}

/**
* 2021-05-11
* @used-by \TFC\Core\Router::match() (tradefurniturecompany.co.uk, https://github.com/tradefurniturecompany/core/issues/40)
* @return Forward
*/
function df_action_c_redirect() {return df_action_create(Redirect::class);}

/**
* 2017-03-16
* 2022-02-23
Expand Down
1 change: 1 addition & 0 deletions Framework/lib/app/controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ function df_redirect_to_success() {df_order_last(false) ? df_redirect('checkout/
* @used-by df_response_code()
* @used-by df_response_content_type()
* @used-by \Df\Framework\App\Action\Image::execute()
* @used-by \TFC\Core\Router::match() (tradefurniturecompany.co.uk, https://github.com/tradefurniturecompany/core/issues/40)
* @param IResult|wResult|IResponse|HttpResponse|null $r [optional]
* @return IResponse|IHttpResponse|HttpResponse|IResult|wResult
*/
Expand Down
1 change: 1 addition & 0 deletions Framework/lib/fs/ds.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ function df_trim_ds($p) {return df_trim($p, '/\\');}
* @used-by df_product_image_path2abs()
* @used-by df_replace_store_code_in_url()
* @used-by \Dfe\Salesforce\Test\Basic::url()
* @used-by \TFC\Core\Router::match() (tradefurniturecompany.co.uk, https://github.com/tradefurniturecompany/core/issues/40)
* @param string $p
* @return string
*/
Expand Down
1 change: 1 addition & 0 deletions Framework/lib/url/construct.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ function df_url_backend_ns($path = null, array $p = []) {return df_url_backend($
* @used-by df_webhook()
* @used-by \Df\Sso\FE\CustomerReturn::url()
* @used-by \Frugue\Store\Plugin\Framework\App\FrontControllerInterface::aroundDispatch()
* @used-by \TFC\Core\Router::match() (tradefurniturecompany.co.uk, https://github.com/tradefurniturecompany/core/issues/40)
* @param string|null $path [optional]
* @param array(string => mixed) $p [optional]
* @param Store|int|string|null $store [optional]
Expand Down
1 change: 1 addition & 0 deletions Store/lib/store.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ function df_store_country($store = null) {return df_country(df_store($store)->ge
* @used-by df_category()
* @used-by df_product()
* @used-by \Mangoit\MediaclipHub\Controller\Index\AddToCart::execute()
* @used-by \TFC\Core\Router::match() (tradefurniturecompany.co.uk, https://github.com/tradefurniturecompany/core/issues/40)
* @used-by \Wolf\Filter\Block\Navigation::hDropdowns()
* @param int|string|null|bool|IStore $store [optional]
* @return int
Expand Down
1 change: 1 addition & 0 deletions UrlRewrite/lib/finder.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* 2020-01-18 It can return also @see \Magento\UrlRewrite\Model\CompositeUrlFinder in Magento 2.3.3.
* @used-by \Frugue\Store\Plugin\UrlRewrite\Model\StoreSwitcher\RewriteUrl::aroundSwitch()
* @used-by \Frugue\Store\Plugin\UrlRewrite\Model\StoreSwitcher\RewriteUrl::findCurrentRewrite()
* @used-by \TFC\Core\Router::match() (tradefurniturecompany.co.uk, https://github.com/tradefurniturecompany/core/issues/40)
* @return IFinder|DbStorage
*/
function df_url_finder() {return df_o(IFinder::class);}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage2pro/core"
,"version": "7.4.3"
,"version": "7.4.4"
,"description": "Mage2.PRO core package."
,"type": "magento2-module"
,"homepage": "https://mage2.pro"
Expand Down

0 comments on commit 4123de2

Please sign in to comment.