Skip to content

Commit

Permalink
Add namespace-abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Dec 4, 2024
1 parent 92981ad commit 9c6dde5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/XML/xenc11/AbstractXenc11Element.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

declare(strict_types=1);

namespace SimpleSAML\XMLSecurity\XML\xenc11;

use SimpleSAML\XML\AbstractElement;
use SimpleSAML\XMLSecurity\Constants as C;

/**
* Abstract class to be implemented by all the classes in this namespace
*
* @package simplesamlphp/xml-security
*/
abstract class AbstractXencElement extends AbstractElement
{
/** @var string */
public const NS = C::NS_XENC11;

/** @var string */
public const NS_PREFIX = 'xenc11';
}

0 comments on commit 9c6dde5

Please sign in to comment.