/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\String;
if (!\function_exists(u::class)) {
function u(?string $string = ''): UnicodeString
{
return new UnicodeString($string ?? '');
}
}
if (!\function_exists(b::class)) {
function b(?string $string = ''): ByteString
{
return new ByteString($string ?? '');
}
}
if (!\function_exists(s::class)) {
/**
* @return UnicodeString|ByteString
*/
function s(?string $string = ''): AbstractString
{
$string = $string ?? '';
return preg_match('//u', $string) ? new UnicodeString($string) : new ByteString($string);
}
}
Fomax – Digital AgencyFomax – Digital Agency
At Fomax Logistics, we understand that time is precious,and distance should never be a barrier. Whether it’s delivering important documents, sending heartfelt gifts, or ensuring your invitations reach loved ones on time, we’re here to make life easier for you.
Your Trusted Partner for Fast & Reliable Deliveries Across Nigeria
With offices in Abuja, Lagos, and Port Harcourt, and a network of trusted agents across all 36 states in Nigeria, we deliver speed, reliability, and peace of mind.
Nationwide Coverage
Fast and Reliable
Secure Handling
+2349139011111
24/7 Support Center
What We Do
Document Handling Made Easy
Let us handle the stress of document submittance, processing, retrieval, and delivery. Instead of spending hours on interstate travels, focus on what matters most while we ensure your documents reach their destination securely and on time. Need follow-ups? We’ve got you covered.
Gift and Package Delivery
Send love, joy, and special packages to your family and friends across Nigeria. Whether it’s a birthday gift, anniversary surprise, or a heartfelt package, we guarantee delivery within 72 hours.
Invitation Delivery
Planning an event? Don’t let distance ruin your plans. We deliver physical invitation cards to your loved ones anywhere in Nigeria within 48 hours. No more delays, no more worries—just seamless delivery.
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
animation-name: fadeIn;
}