Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 11... Línea 11...
11
{
11
{
12
    public function __construct(string $name)
12
    public function __construct(string $name)
13
    {
13
    {
14
        $msg = '%s is not a valid style identifier for a border. Valid identifiers are: %s.';
14
        $msg = '%s is not a valid style identifier for a border. Valid identifiers are: %s.';
Línea 15... Línea 15...
15
 
15
 
16
        parent::__construct(sprintf($msg, $name, implode(',', BorderPart::allowedStyles)));
16
        parent::__construct(\sprintf($msg, $name, implode(',', BorderPart::allowedStyles)));
17
    }
17
    }