Passed
Branch develop (7ed98a)
by Richard
04:39
created

RichText   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
dl 0
loc 6
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __toString() 0 4 1
1
<?php
2
3
4
namespace Riclep\Storyblok\Fields;
5
6
7
use Riclep\Storyblok\Field;
8
use Storyblok\RichtextRender\Resolver;
9
10
class RichText extends Field
11
{
12
	public function __toString()
13
	{
14
		$richtextResolver = new Resolver();
15
		return $richtextResolver->render($this->content);
16
	}
17
}