OpenSkill\Datatable\Composers\ColumnComposer::build PHP 메소드

build() 공개 메소드

public build ( ) : DatatableService
리턴 OpenSkill\Datatable\DatatableService Will return the fully built DatatableService that will contain the ColumnConfiguration
    public function build()
    {
        return new DatatableService($this->provider, $this->columnConfiguration, $this->version, $this->viewFactory, $this->configRepository);
    }

Usage Example

 /**
  * Will test if the service can be built without problems
  */
 public function testBuild()
 {
     $service = $this->composer->build();
 }