Level 13
@kickthemooon You can add the @property tag to your file to document info and Storm will display it during editing.
<?php namespace App\lib\nba\reader;
use jimmck\myutils\excel\CSVReader;
use jimmck\myutils\excel\CSVColumn;
/**
* @property CSVPlayers $fanDuelId
* @property CSVPlayers $firstName
* @property CSVPlayers $lastName
* @property CSVPlayers $position
* @property CSVPlayers $teamCode
*/
class CSVPlayers extends CSVReader
{
private $fanDuelId;
private $firstName;
private $lastName;
private $position;
private $teamCode;
...