jimbojsb/swurl

View on GitHub
src/Fragment.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Swurl;

class Fragment extends Parsable
{
    protected function getParsedSeperator(): string
    {
        return '#';
    }

    protected function useAssignmentIfEmpty(): bool
    {
        return false;
    }
}