Style.php 325 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: loconox
  5. * Date: 28/03/2017
  6. * Time: 16:22
  7. */
  8. namespace AppBundle\CSL;
  9. class Style extends Element
  10. {
  11. function __construct(\DOMElement $dom_node = null, CiteProc $citeproc = null)
  12. {
  13. if ($dom_node) {
  14. $this->set_attributes($dom_node);
  15. }
  16. }
  17. }