Herkese merhaba geliştirmekte olduğum bir işti fakat 2 gün içerisinde vazgeçtim üstünde çok durmadım 2 3 saatte yaptığım bir işti.
<?php
use XF\App;
interface EncryptorInterface
{
public function encryptData($data, $key, $iv);
}
class AesEncryptor implements EncryptorInterface...