for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpOffice\PhpPresentation\Shape\Drawing;
use PhpOffice\PhpPresentation\Shape\AbstractGraphic;
abstract class AbstractDrawingAdapter extends AbstractGraphic
{
/**
* @return string
*/
abstract public function getContents();
abstract public function getExtension();
abstract public function getIndexedFilename();
abstract public function getMimeType();
}