You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
copenssl/src/OpenSSL/C/CBackedObjectWithOwner.php

19 lines
275 B
PHP

<?php
namespace Cijber\OpenSSL\C;
use FFI;
use FFI\CData;
class CBackedObjectWithOwner extends CBackedObject
{
protected FFI $ffi;
protected function __construct(FFI $ffi, CData $cObj)
{
parent::__construct($cObj);
$this->ffi = $ffi;
}
}